12345678910111213141516 |
- /// <reference types="vite/client" />
- type DeepWriteable<T> = { -readonly [P in keyof T]: DeepWriteable<T[P]> }
- declare type Recordable<T = any> = Record<string, T>
- declare type I18nGlobalTranslation = {
- (key: string): string
- (key: string, locale: string): string
- (key: string, locale: string, list: unknown[]): string
- (key: string, locale: string, named: Record<string, unknown>): string
- (key: string, list: unknown[]): string
- (key: string, named: Record<string, unknown>): string
- }
- declare const $t: I18nGlobalTranslation
|