From e327aad0029ef5e4ff2775ed32b4581c29b05c10 Mon Sep 17 00:00:00 2001 From: Josh Spinney Date: Wed, 18 Sep 2024 23:03:52 -0700 Subject: [PATCH] fix: correct silent type (#47) * fix: correct silent type * fix: correct type for `silent` option --------- Co-authored-by: yuyinws --- src/types.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/types.ts b/src/types.ts index fd3c62f..b9f0829 100644 --- a/src/types.ts +++ b/src/types.ts @@ -79,11 +79,10 @@ export interface Options { /** * Whether to print plugin server url to the console. * - * Set it to `false` to disable. * - * @defaultValue true + * @defaultValue false */ - silent?: false + silent?: boolean } export interface GenContext {