Type Alias: JsonBinarySource
type JsonBinarySource =
| {
base64: string;
}
| {
path: string;
}
| {
url: string;
};
A binary asset source. path and url require Node 18+/a fetch-capable runtime.
type JsonBinarySource =
| {
base64: string;
}
| {
path: string;
}
| {
url: string;
};
A binary asset source. path and url require Node 18+/a fetch-capable runtime.