| 1234567891011121314151617181920 |
- /// <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;
- };
- interface ImportMetaEnv {
- VITE_APP_SDK: string;
- }
- declare const $t: I18nGlobalTranslation;
|