polymer-bundler
Version:
Process Web Components into one output file
26 lines (23 loc) • 536 B
TypeScript
declare module 'command-line-args' {
function commandLineArgs(args: commandLineArgs.ArgDescriptor[])
: any;
module commandLineArgs {
interface ArgDescriptor {
name: string;
alias?: string;
description?: string;
defaultValue?: any;
type?: Object;
multiple?: boolean;
defaultOption?: boolean;
group?: string;
}
interface UsageOpts {
title?: string;
header?: string;
description?: string;
groups?: any;
}
}
export = commandLineArgs;
}