UNPKG

@rist/preset-react

Version:
8 lines (6 loc) 256 B
import { CommanderStatic } from 'commander'; import { AbstractAction } from './abstract.action'; export abstract class AbstractCommand { constructor(protected action: AbstractAction) {} public abstract load(program: CommanderStatic): void; }