14 lines
359 B
TypeScript
14 lines
359 B
TypeScript
export type OpenCodeBinaryType = "opencode" | "opencode-desktop";
|
|
export type OpenCodeConfigDirOptions = {
|
|
binary: OpenCodeBinaryType;
|
|
version?: string | null;
|
|
checkExisting?: boolean;
|
|
};
|
|
export type OpenCodeConfigPaths = {
|
|
configDir: string;
|
|
configJson: string;
|
|
configJsonc: string;
|
|
packageJson: string;
|
|
omoConfig: string;
|
|
};
|