mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-17 19:13:34 +08:00
7 lines
233 B
TypeScript
7 lines
233 B
TypeScript
// tslint:disable:no-global-tslint-disable no-any file-header
|
|
declare module 'yargs-parser' {
|
|
const parseOptions: any;
|
|
const yargsParser: <T = any>(args: string | string[], options?: parseOptions) => T;
|
|
export = yargsParser;
|
|
}
|