UNPKG

shadecli

Version:

CLI tool to generate Tailwind color palettes and update Tailwind config files

12 lines (11 loc) 348 B
#!/usr/bin/env node interface CLIArgs { color: string; name: string; output: string; } export declare function parseArgs(): CLIArgs; export declare function createTailwindConfigTemplate(): string; export declare function askQuestion(query: string): Promise<boolean>; export declare function main(): Promise<void>; export {};