UNPKG

279 BTypeScriptView Raw
1import { ICommand } from './command';
2import { ITopic } from './topic';
3export interface IPluginModule {
4 commands: ICommand[];
5 topic?: ITopic;
6 topics: ITopic[];
7}
8export interface IPlugin {
9 name: string;
10 version: string;
11 type: string;
12 root: string;
13}