Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions lib/src/components/wall/agent-browser-screen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,11 @@ export type ScreenState = 'SYNCED' | 'SCALED';
* becomes a stub.
* - `iframe` — the page's own DOM in a proxied iframe: native + zero-lag,
* but loopback-only and not agent-drivable.
* Absent ⇒ `ab-screencast` — a surface with no explicit mode reads as a
* screencast. */
* Absent from params ⇒ `iframe` — a surface with no explicit mode resolves to
* the engine-less embed (`resolveRenderMode` in browser-surface.ts;
* docs/specs/dor-browser.md → "Canonical Params"). Note this differs from the
* `ScreenSnapshot.renderMode` glyph default below, which reads absent as
* `ab-screencast`. */
export type RenderMode = 'ab-screencast' | 'ab-popout' | 'iframe';

export interface ScreenSnapshot {
Expand Down
Loading