Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

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;

§Type

§
ArrayBuffer
[src]