@sharksv/hyper
Version:
A CLI to bootstrap new projects!
35 lines (34 loc) • 698 B
TypeScript
import * as meow from 'meow';
declare const Args: meow.Result<{
keep: {
type: "boolean";
default: false;
alias: string;
description: string;
};
skip: {
type: "boolean";
default: false;
alias: string;
description: string;
};
install: {
type: "boolean";
default: false;
alias: string;
description: string;
};
version: {
type: "boolean";
default: false;
alias: string;
description: string;
};
rainbow: {
type: "boolean";
default: false;
alias: string;
description: string;
};
}>;
export default Args;