Type Alias NodeBackendConfig
NodeBackendConfig: Readonly<
{
executionMode?: "auto"
| "worker"
| "inline";
fpsCap?: number;
frameSabSlotBytes?: number;
frameSabSlotCount?: number;
frameTransport?: "auto" | "transfer" | "sab";
maxEventBytes?: number;
nativeConfig?: Readonly<Record<string, unknown>>;
useDrawlistV2?: boolean;
},
>