UNPKG

cr-react-cli

Version:

Create react files with a single command

11 lines (10 loc) 357 B
import { Command } from 'commander'; import Dictionary from '../types/dictionary'; import BaseAction from '../actions/base.action'; declare abstract class BaseCommand { protected action: BaseAction; constructor(action: BaseAction); abstract build(): Command; protected parseOptions(args: any): Dictionary<any>; } export default BaseCommand;