Type Alias Primative<T>

Primative: T extends "NULL"
    ? null
    : T extends "INTEGER"
    | "REAL"
        ? number
        : T extends "CHAR(1)" ? boolean : string

Primative types that coralate to their SQLType.

Type Parameters