@ace-sdk/cli
Version:
ACE CLI - Command-line tool for intelligent pattern learning and playbook management
13 lines • 308 B
TypeScript
/**
* Import playbook command
*/
interface ImportOptions {
file?: string;
stdin?: boolean;
}
/**
* Import playbook from JSON file or stdin
*/
export declare function importCommand(fileArg: string | undefined, options: ImportOptions): Promise<void>;
export {};
//# sourceMappingURL=import.d.ts.map