oclif-web-ui
Version:
A Web UI for any CLI written with oclif
12 lines (11 loc) • 320 B
TypeScript
import * as Config from '@oclif/config';
declare class Server {
private cliConfig;
private cliCommands;
private server;
constructor(cliConfig: Config.IConfig, cliCommands: Config.Command.Plugin[]);
private setupFastify;
private acceptsHtml;
startServer(): Promise<void>;
}
export { Server };