/** * #rendering.ts * * Code generated by ts-proto. DO NOT EDIT. * @packageDocumentation */ import type { Block } from "./block.js"; import type { BlockRenderEventType } from "./enums.js"; export type BlockRenderRequest = { /** What triggered this render request */ type: BlockRenderEventType; /** * ID to differentiate between similar events of the same type * such as an actionId for USER_ACTION events */ id?: string | undefined; /** Additional data from the event, if any */ data?: { [key: string]: any; } | undefined; }; export type BlockRenderResponse = { /** A BLOCK_ROOT element */ ui?: Block | undefined; }; //# sourceMappingURL=rendering.d.ts.map