polyserve
Version:
A simple dev server for bower components
24 lines (21 loc) • 516 B
TypeScript
declare module 'command-line-usage' {
function commandLineUsage(args: commandLineUsage.Section[]): any;
module commandLineUsage {
interface Section {
header?: string;
title?: string;
content?: string;
optionList?: ArgDescriptor[];
}
interface ArgDescriptor {
name: string;
alias?: string;
description?: string;
defaultValue?: any;
type?: Object;
multiple?: boolean;
defaultOption?: boolean;
}
}
export = commandLineUsage;
}