UNPKG

@anycli/config

Version:

base config object and standard interfaces for anycli components

12 lines (11 loc) 324 B
import { Command } from './command'; export interface Manifest { version: string; commands: { [id: string]: Command; }; } export declare namespace Manifest { type FindCommandCB = (id: string) => Command.Class; function build(version: string, dir: string, findCommand: FindCommandCB): Manifest; }