scaffold-scripts
Version:
Simple CLI tool for managing and running your own scripts. Add any script, run it anywhere.
17 lines • 328 B
TypeScript
/**
* Configuration object for the scaffold scripts CLI
*/
export declare const config: {
db: {
path: string;
};
cli: {
name: string;
version: string;
};
};
/**
* Ensure the database folder exists
*/
export declare function ensureDbFolder(): void;
//# sourceMappingURL=config.d.ts.map