Files
oh-my-opencode/dist/cli/config-manager/parse-opencode-config-file.d.ts
T

11 lines
276 B
TypeScript
Raw Normal View History

interface ParseConfigResult {
config: OpenCodeConfig | null;
error?: string;
}
export interface OpenCodeConfig {
plugin?: string[];
[key: string]: unknown;
}
export declare function parseOpenCodeConfigFileWithError(path: string): ParseConfigResult;
export {};