diffjam
Version:
cli for diffjam.com
25 lines (24 loc) • 429 B
TypeScript
import meow from "meow";
export interface Flags {
config?: string;
verbose?: boolean;
record?: boolean;
ci?: boolean;
}
export declare const cli: meow.Result<{
config: {
type: "string";
alias: string;
};
verbose: {
type: "boolean";
alias: string;
};
record: {
type: "boolean";
alias: string;
};
ci: {
type: "boolean";
};
}>;