11 lines
289 B
JavaScript
11 lines
289 B
JavaScript
/**
|
|
* SDK Iframe exports
|
|
*/
|
|
import { SdkIframeCore } from './SdkIframeCore';
|
|
export * from './types';
|
|
export { SdkIframeCore };
|
|
// Export to window for direct browser usage
|
|
if (typeof window !== 'undefined') {
|
|
window.SdkIframeCore = SdkIframeCore;
|
|
}
|
|
//# sourceMappingURL=index.js.map
|