@twind/cli
Version:
16 lines (13 loc) • 368 B
TypeScript
declare const cli: (argv?: string[]) => void;
interface RunOptions {
config?: string;
output?: string;
cwd?: string;
color?: boolean;
watch?: boolean;
ignoreFile?: string;
beautify?: boolean;
}
declare const run: (globs: string[], options?: RunOptions) => Promise<void>;
export { RunOptions, cli, run };
//# sourceMappingURL=cli.d.ts.map