Skip to content

a11ydocs v1.7.0


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.

Released under the ISC license.