ConvertOptions
Defined in: src/types.ts:27
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
engine? | "auto" | "wasm" | "js" | Which render engine to use. - 'auto' (default) — try xl3-wasm if it's installed and instantiable; otherwise fall back to the ExcelJS path. Falls through to ExcelJS on any wasm-side error too. - 'wasm' — require xl3-wasm; throw if it's not available or the call errors. Useful in tests that need to assert the wasm path is the one being exercised. - 'js' — force the original ExcelJS path. Useful as a kill switch when a wasm regression is suspected. Stable Frozen at 1.0 — auto is the default and SHOULD remain so for forward compatibility. | src/types.ts:44 |
inputs? | Record<string, unknown> | Host-provided values for inputs declared in the template's _inputs sheet. | src/types.ts:29 |