@groww-tech/ella
Version:
Ella is a utility-belt library for JavaScript that provides general purpose methods used in day to day programming.
31 lines (29 loc) • 682 B
TypeScript
declare const COMMON_URLS: {
PROD_HOST: string;
DEFAULT_GROWW_LOGO_270: string;
FACEBOOK_PAGE: string;
TWITTER_PAGE: string;
YOUTUBE_PAGE: string;
INSTAGRAM_PAGE: string;
LINKEDIN_PAGE: string;
YOUTUBE_MAIN_CHANNEL: string;
};
declare const OS_TYPES: {
IOS: string;
ANDROID: string;
MAC_OS: string;
WINDOWS: string;
LINUX: string;
};
declare const CUSTOM_EVENTS: {
THEME_CHANGE: string;
RC_LOADED: string;
FIREBASE_AUTHENTICATE: string;
TABLE_CLOSE: string;
TRACK_LOG: string;
};
declare const PLATFORM: {
MOBILE: string;
DESKTOP: string;
};
export { COMMON_URLS, CUSTOM_EVENTS, OS_TYPES, PLATFORM };