Configuration whose lifetime matches an explicit renderer instance.
Signature
export interface RendererInit {
execution?: "worker" | "main";
wasmUrl?: string | URL;
fonts?: readonly FontRegistration[];
}Properties
| Property | Type | Required | Read only | Default | Description |
|---|---|---|---|---|---|
execution | "worker" | "main" | No | No | worker | Execution backend. Defaults to worker. |
wasmUrl | string | URL | No | No | None | WASM asset override for deployments that cannot serve package-relative assets. |
fonts | readonly FontRegistration[] | No | No | None | Embeddable TrueType fonts registered once for every render. |