12 lines
159 B
TypeScript
12 lines
159 B
TypeScript
|
/// <reference path="index.ts" />
|
||
|
interface CliOption {
|
||
|
name: string;
|
||
|
specified:boolean;
|
||
|
value: any;
|
||
|
}
|
||
|
|
||
|
interface Directory {
|
||
|
path: string;
|
||
|
}
|
||
|
|