aboutsummaryrefslogtreecommitdiff
path: root/tools/typings/yargs.d.ts
blob: 8351942d22646653d11d05f14f11e48e1be2aa20 (plain)
1
2
3
4
5
6
7
8
9
declare module 'yargs' {
  var yargs: IYargs;
  export = yargs;

  // Minimalistic but serves the usage in the seed.
  interface IYargs {
    argv: any;
  }
}