aboutsummaryrefslogtreecommitdiff
path: root/tools/typings/yargs.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tools/typings/yargs.d.ts')
-rw-r--r--tools/typings/yargs.d.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/typings/yargs.d.ts b/tools/typings/yargs.d.ts
new file mode 100644
index 0000000..8351942
--- /dev/null
+++ b/tools/typings/yargs.d.ts
@@ -0,0 +1,9 @@
+declare module 'yargs' {
+ var yargs: IYargs;
+ export = yargs;
+
+ // Minimalistic but serves the usage in the seed.
+ interface IYargs {
+ argv: any;
+ }
+}