/** * #screenshot.ts * * Code generated by ts-proto. DO NOT EDIT. * @packageDocumentation */ /** Event sent from the client to the web view to request a screenshot of the current iframe content. */ export type WebViewScreenshotRequestEvent = {}; /** * Effect returned when a screenshot has been successfully captured * or when an error occurs during capture */ export type WebViewScreenshotResponseEffect = { /** Base64-encoded image data URL (e.g., "data:image/jpeg;base64,...") */ dataUrl?: string | undefined; /** Error message if screenshot capture failed */ error?: string | undefined; }; //# sourceMappingURL=screenshot.d.ts.map