UNPKG

288 BTypeScriptView Raw
1import { OpTypes } from '../constants/opConfig';
2export interface InitParams {
3 commandName: string | undefined;
4 commandDescription: string | undefined;
5 workflowName: string | undefined;
6 workflowDescription: string | undefined;
7 templates: OpTypes[];
8 help?: void;
9}