Appearance
a11ydocs / JsonBinarySource
Type Alias: JsonBinarySource
ts
type JsonBinarySource =
| {
base64: string;
}
| {
path: string;
}
| {
url: string;
};Defined in: src/document-json.ts:52
A binary asset source. path and url require Node 18+/a fetch-capable runtime.