UNPKG

329 BTypeScriptView Raw
1import * as Config from '.';
2export interface Manifest {
3 version: string;
4 commands: {
5 [id: string]: Config.Command;
6 };
7}
8export declare namespace Manifest {
9 type FindCommandCB = (id: string) => Config.Command.Full;
10 function build(version: string, dir: string, findCommand: FindCommandCB): Manifest;
11}