smartcli/ts/interfaces.ts

12 lines
159 B
TypeScript
Raw Normal View History

2015-10-14 18:59:01 +00:00
/// <reference path="index.ts" />
interface CliOption {
name: string;
specified:boolean;
value: any;
}
interface Directory {
path: string;
}