UNPKG

142 BTypeScriptView Raw
1import { Command } from './command';
2export interface Manifest {
3 version: string;
4 commands: {
5 [id: string]: Command;
6 };
7}