UNPKG

@etsoo/appscript

Version:

Applications shared TypeScript framework

41 lines (35 loc) 534 B
/** * Custom culture data */ export type CustomCultureData = { /** * Key */ key: string; /** * Organization id */ orgId?: number; /** * Title / label */ title: string; /** * Description */ description?: string; /** * JSON data related * Use Utils.parseString of @etsoo/shared to parse the string to JSON object */ jsonData?: string; }; /** * Custom culture */ export type CustomCulture = CustomCultureData & { /** * Culture, like zh-Hans */ culture: string; };