@nuskin/react-loyalty-elements
Version:
A React based component library for reusable Nextgen Loyalty component
15 lines (14 loc) • 439 B
TypeScript
declare const IS_BROWSER: boolean;
declare class ApplicationStore {
width: number;
scroll: {
vertical: number;
horizontal: number;
direction: string;
};
get isMobile(): boolean;
get isPhone(): boolean;
}
declare const applicationContainer: ApplicationStore;
export { IS_BROWSER, ApplicationStore, applicationContainer, applicationContainer as application };
export default applicationContainer;