UNPKG

182 BTypeScriptView Raw
1import { Input } from '../commands';
2export declare abstract class AbstractAction {
3 abstract handle(inputs?: Input[], options?: Input[], extraFlags?: string[]): Promise<void>;
4}