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

SSQLDefaults

import type { SSQLDefaults } from "https://raw.githubusercontent.com/cybertim/SmallSQLiteORM/main/mod.ts";

Interface used to override the DEFAULT column type values

interface SSQLDefaults {
bool: boolean;
int: number;
str: string;
}

§Properties

§
bool: boolean
[src]
§
int: number
[src]
§
str: string
[src]