/** * List of apis to talk to ParentIframeCommunicator from the IsolatedDynamicDataTransceiver * to send information to the main page via PostMessage. * * @internal */ export interface IDynamicDataParentIframeCommunicator { /** * API to send the data related to the dynamic data scenarios to the main page * from the isolated frame. */ sendDynamicDataPostMessage: (messageData: {}) => void; } //# sourceMappingURL=IDynamicDataParentIframeCommunicator.d.ts.map