UNPKG

cr-react-cli

Version:

Create react files with a single command

14 lines (13 loc) 321 B
import BaseAction from '../base.action'; interface Inputs { name: string; } interface Options { typescript: boolean; path: string; } declare class CreateHookAction extends BaseAction { handle(inputs?: Inputs, options?: Options): Promise<void>; private createFolder; } export default CreateHookAction;