UNPKG

diffjam

Version:
20 lines (19 loc) 338 B
import meow from "meow"; export interface Flags { config?: string; verbose?: boolean; ci?: boolean; } export declare const cli: meow.Result<{ config: { type: "string"; alias: string; }; verbose: { type: "boolean"; alias: string; }; ci: { type: "boolean"; }; }>;