@quartal/bridge-client
Version:
Universal client library for embedding applications with URL-configurable transport support (iframe, postMessage) and framework adapters for Angular and Vue
13 lines • 490 B
TypeScript
import type { TransportAdapter } from './transport-adapter';
/**
* Transport factory for creating different transport adapters
*/
export declare class TransportFactory {
/**
* Create a transport adapter based on type
* @param type - Transport type for parent-child communication
* @param config - Transport-specific configuration
*/
static create(type: 'iframe' | 'postmessage', config: any): TransportAdapter;
}
//# sourceMappingURL=transport-factory.d.ts.map