1 | export declare type Localization = "EN-en" | "ES-es" | "FR-fr" | "IT-it" | "PT-pt" | "RU-ru" | "ZH-cn" | "ZH-hk";
|
2 | export declare type Components = "dropzone" | "file-item" | "dropzone-footer" | "dropzone-header" | "image-preview";
|
3 | export declare type FunctionLabel = ((s1: string | number, s2?: string | number, s3?: string) => string);
|
4 | export interface LocalLabels {
|
5 | [label: string]: string | FunctionLabel | LocalLabels;
|
6 | }
|
7 | export declare type ComponentLocalizer = {
|
8 | [language in Localization]: LocalLabels;
|
9 | };
|
10 |
|
\ | No newline at end of file |