From b1b156a3eb4ddd6803fbbd56c611a77919293000 Mon Sep 17 00:00:00 2001 From: Jeroen de Bruijn Date: Mon, 7 Oct 2019 21:57:55 +0200 Subject: [PATCH] fix(docs): TypeScript import to prevent a future major release warning (#1441) --- docs/typescript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/typescript.md b/docs/typescript.md index 4de9367fc..ada3572fc 100644 --- a/docs/typescript.md +++ b/docs/typescript.md @@ -7,7 +7,7 @@ The following `.options()` definition: ```typescript #!/usr/bin/env node -import * as yargs from 'yargs'; +import yargs from 'yargs'; const argv = yargs.options({ a: { type: 'boolean', default: false },