cr-react-cli
Version:
Create react files with a single command
15 lines (14 loc) • 356 B
TypeScript
import BaseAction from '../base.action';
interface Inputs {
name: string;
}
interface Options {
typescript: boolean;
path: string;
customProvider: boolean;
}
declare class CreateContextAction extends BaseAction {
handle(inputs?: Inputs, options?: Options): Promise<void>;
private createFolder;
}
export default CreateContextAction;