@lands.io/mod-sdk / ParentReadyMessage Interface: ParentReadyMessage¶ Parent ready message sent from the parent app. Used for handshake retry/ack pattern to prevent deadlock. Table of contents¶ Properties¶ type Properties¶ type¶ • type: "parentReady" Source Code¶ View full implementation /** * Parent ready message sent from the parent app. * Used for handshake retry/ack pattern to prevent deadlock. */ export interface ParentReadyMessage { type: 'parentReady'; }