@etsoo/appscript
Version:
Applications shared TypeScript framework
38 lines (37 loc) • 858 B
TypeScript
import { DataTypes } from "@etsoo/shared";
import { AddressRegion } from "../address/AddressRegion";
import { IExternalSettings } from "./ExternalSettings";
/**
* App settings interface
*/
export interface IAppSettings extends IExternalSettings {
/**
* Application id
* 程序编号
*/
readonly appId: number;
/**
* Supported country/region ids
*/
readonly regions: string[];
/**
* Supported cultures
*/
readonly cultures: DataTypes.CultureDefinition[];
/**
* Detected culture
*/
readonly detectedCulture: string;
/**
* Time zone, set a static value for all clients
*/
timeZone?: string;
/**
* Current country or region
*/
currentRegion: AddressRegion;
/**
* Current culture
*/
currentCulture: DataTypes.CultureDefinition;
}