flow2schema/declarations/optimist.js

12 lines
218 B
JavaScript
Raw Normal View History

2017-11-18 12:38:34 +03:00
declare module 'optimist' {
declare type Optimist = {
usage(string): Optimist,
argv: {
[string]: any,
_: string[],
},
};
declare module.exports: Optimist;
}