16 lines
334 B
TypeScript
16 lines
334 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
|
||
|
|
}
|