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

Value

import type { Value } from "https://raw.githubusercontent.com/crabmusket/deno_sqlite_plugin/master/src/mod.ts";

SQLite knows only a few native types, represented here. All other types (dates, booleans, etc.) must be encoded as one of these types. https://www.sqlite.org/datatype3.html

type Value =
| null
| number
| string
| Blob;

§Type

§
null | number | string | Blob
[src]