You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gristlabs_grist-core/app/common/BrowserSettings.ts

10 lines
282 B

/**
* Describes the settings that a browser sends to the server.
*/
export interface BrowserSettings {
// The browser's timezone, must be one of `momet.tz.names()`.
timezone?: string;
// The browser's locale, should be read from Accept-Language header.
locale?: string;
}