angular-cli/packages/angular/cli/custom-typings.d.ts
2018-06-05 18:50:06 -07:00

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;
}