UNPKG

386 BTypeScriptView Raw
1export declare const command = "docs";
2export declare const describe = "Opens the reference documentation in a browser";
3export declare const aliases: string[];
4/**
5 * Options for the docs command
6 */
7export interface DocsOptions {
8 /**
9 * The command to use to open the browser
10 */
11 browser: string;
12}
13export declare function docs(options: DocsOptions): Promise<number>;