@arrowhealth/bridge-sdk
Version:
Bridge SDK provides web applications the ability to integrate with the Bridge Platform.
48 lines (47 loc) • 1.14 kB
TypeScript
/**
* Indicates if application is running inside of popout
*/
export declare const inPopout: boolean;
/**
* Indicates if application is running inside of iframe
*/
export declare const inIframe: boolean;
/**
* Indicates if application is running inside of Bridge
*/
export declare const inBridge: boolean;
/**
* Indicates the current version
*/
export declare const version = "[VI]{version}[/VI]";
/**
* @private
*/
export declare const EVENTS: {
CAPTURE_USER_EVENTS: string;
CLEAR_CACHE: string;
CLOSE_APP: string;
DISABLE_TILE: string;
ENABLE_TILE: string;
GET_AUTH_STATUS: string;
GET_AUTH_USER: string;
GET_ORG: string;
GET_PAGE: string;
GET_PAGE_DETAILS: string;
GET_PATIENT_INFO: string;
GET_PLATFORM: string;
GET_USER_SESSION: string;
HIDE_TILE: string;
LOGIN: string;
LOGOUT: string;
OPEN_APP: string;
PROXY_READY: string;
PUSH_NOTIFICATION: string;
RELEASE_USER_EVENTS: string;
SET_AUTH_STATUS: string;
SET_AUTH_USER: string;
SET_BADGE_COUNT: string;
SET_ORG: string;
SET_PATIENT_INFO: string;
SHOW_TILE: string;
};