UNPKG

@arrowhealth/bridge-sdk

Version:

Bridge SDK provides web applications the ability to integrate with the Bridge Platform.

29 lines (28 loc) 756 B
export * from './interfaces'; export * from './app'; /** * $$ represents the functionaly used to establish setup and SSO. * @private */ export * as $$ from './internal'; /** * $ represents the requests bridge receives from hosted applications. * @private */ export * as $ from './platform'; /** * Indicates if application is running inside of popout (tab or window) */ 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; /** * Returns the version of Bridge being used within the application. */ export declare const version = "[VI]{version}[/VI]";