@aurigma/design-atoms-model
Version:
Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.
21 lines (20 loc) • 655 B
TypeScript
export declare const Environment: {
IsIos: () => boolean;
GetIosVersion: () => number[];
IosMajorVersion: () => number;
IsAndroid: () => boolean;
IsTouchDevice: () => boolean;
IsNativeAndroidBrowser: () => boolean;
IsGoogleChrome: () => boolean;
IsSafari: () => boolean;
IsSafariOrSafariWebView: () => boolean;
IsFirefox: () => boolean;
IsTouchIE: () => boolean;
IsIE: () => boolean;
IsEdge: () => boolean;
GetEdgeHtmlVersion: () => number[];
readonly devicePixelRatio: number;
readonly screenDpi: number;
IsSmallScreen: () => boolean;
};
export default Environment;