Skip to content

Commit 2b7b84f

Browse files
fix: resolve an ESLint error (#1260)
1 parent 3cc3c17 commit 2b7b84f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/types/common/translator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import typia from "typia";
33

44
type TranslationData = typeof enTranslation;
55
type TranslationKey = keyof TranslationData;
6-
type TranslationFunction = (messageName: TranslationKey, substitutions?: string | string[] | undefined) => string;
6+
type TranslationFunction = (messageName: TranslationKey, substitutions?: string | string[]) => string;
77

88
// eslint-disable-next-line no-magic-numbers
99
type TranslationSubstitutions = Parameters<TranslationFunction>[1];

0 commit comments

Comments
 (0)