diff --git a/src/typings/app.d.ts b/src/typings/app.d.ts index 87a326e4..6ac7af3f 100644 --- a/src/typings/app.d.ts +++ b/src/typings/app.d.ts @@ -913,21 +913,13 @@ declare namespace App { interface $T { (key: I18nKey): string; - (key: I18nKey, plural: number, options?: TranslateOptions): string; - (key: I18nKey, defaultMsg: string, options?: TranslateOptions): string; - (key: I18nKey, list: unknown[], options?: TranslateOptions): string; - (key: I18nKey, list: unknown[], plural: number): string; - (key: I18nKey, list: unknown[], defaultMsg: string): string; - (key: I18nKey, named: Record, options?: TranslateOptions): string; - (key: I18nKey, named: Record, plural: number): string; - (key: I18nKey, named: Record, defaultMsg: string): string; } }