From 64c3d579e2dafcd85af8f757dcdb626c37f77f8c Mon Sep 17 00:00:00 2001 From: "Gudmundur D. Haraldsson" Date: Tue, 21 Nov 2023 11:27:30 +0000 Subject: [PATCH] Updating formatting --- types/enquirer/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/enquirer/index.d.ts b/types/enquirer/index.d.ts index a0a745b44..f1b746ad7 100644 --- a/types/enquirer/index.d.ts +++ b/types/enquirer/index.d.ts @@ -316,7 +316,7 @@ declare namespace Enquirer { } & SelectQuestionOptionsBase; export type SelectQuestionOptionsBase = { choices: SelectQuestion.Choice[]; - } & Omit & + } & Omit< types.QuestionBase, 'initial' > & types.Initializer< string | number, string > & types.Formatter< string, string >;