From 4825a521e2c74d63a11920b48094fddc79001b3c Mon Sep 17 00:00:00 2001 From: songhn233 Date: Sat, 31 Jul 2021 01:17:30 +0800 Subject: [PATCH] fix(types): prompt messages key --- @commitlint/types/src/prompt.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/@commitlint/types/src/prompt.ts b/@commitlint/types/src/prompt.ts index d81b5f0648..d9eda48f05 100644 --- a/@commitlint/types/src/prompt.ts +++ b/@commitlint/types/src/prompt.ts @@ -42,6 +42,7 @@ export type PromptMessages = { emptyWarning?: string; upperLimitWarning?: string; lowerLimitWarning?: string; + [_key: string]: string | undefined; }; export type UserPromptConfig = DeepPartial;