Blob
import type { Blob } from "https://raw.githubusercontent.com/crabmusket/deno_sqlite_plugin/master/src/mod.ts";
Raw ArrayBuffers are used to transfer binary data. For example, if you have
a typed array like a Uint8Array, you can use theArray.buffer
to get its
raw data for insertion into SQLite.
type Blob = ArrayBuffer;