UNPKG

367 BTypeScriptView Raw
1#!/usr/bin/env node
2export type CliOption = {
3 /**
4 * display name
5 */
6 name: string;
7 /**
8 * npm package name
9 */
10 package: string;
11 /**
12 * name of the executable file
13 */
14 binName: string;
15 /**
16 * currently installed?
17 */
18 installed: boolean;
19 /**
20 * homepage
21 */
22 url: string;
23 /**
24 * preprocessor
25 */
26 preprocess: Function;
27};