@convo-lang/convo-lang
Version:
The language of AI
10 lines (9 loc) • 427 B
TypeScript
import { VfsCtrl } from "@iyio/vfs";
import { ConvoProjectConfig } from "./convo-types.js";
export interface LoadConfigProjectConfigOptions {
basePath?: string;
filename?: string;
maxParentDepth?: number;
vfs?: VfsCtrl;
}
export declare const loadConvoProjectConfigFromVfsAsync: ({ basePath, filename, maxParentDepth, vfs: vfsCtrl, }: LoadConfigProjectConfigOptions) => Promise<ConvoProjectConfig | undefined>;