UNPKG

@kui-shell/plugin-client-common

Version:

Kui plugin that offers stylesheets

9 lines (8 loc) 160 B
export interface Tree { name: string; children?: Tree[]; } export default interface Input { input: string; tree: (command: string) => Tree[]; }