Skip to content

Type Alias: HostToEmbedMessage

ts
type HostToEmbedMessage = 
  | {
  silent?: boolean;
  state: StateValues;
  type: typeof setState;
}
  | {
  requestId: string;
  type: typeof getState;
}
  | {
  requestId: string;
  type: typeof getStateSchema;
};

Messages a host sends into the frame.

Ridge AI