UNPKG

395 BPlain TextView Raw
1import { ICommand } from '@platform/cli.spec/lib/types';
2
3export * from '@platform/cli.spec/lib/types';
4
5export * from './components/CommandPrompt/types';
6export * from './components/CommandTree/types';
7export * from './components/CommandShell/types';
8
9/**
10 * [Events]
11 */
12export type CommandClickEvent = { cmd: ICommand };
13export type CommandClickEventHandler = (e: CommandClickEvent) => void;