genaiscript
Version:
A CLI for GenAIScript, a generative AI scripting framework.
11 lines • 547 B
TypeScript
/**
* Compiles scripts in specified folders or all if none specified.
* Fixes prompt definitions before compiling.
* Handles both JavaScript and TypeScript compilation based on folder content.
* Logs errors and verbose output during the compilation process.
* Exits process with error code if any compilation fails.
*
* @param folders - An array of folder names to compile. If empty, compiles all available script folders.
*/
export declare function compileScript(folders: string[]): Promise<void>;
//# sourceMappingURL=typescript.d.ts.map