Skip to main content
Module

x/postgresjs/src/types.js>types

Postgres.js - The Fastest full featured PostgreSQL client for Node.js, Deno, Bun and CloudFlare
Very Popular
Latest
variable types
import { types } from "https://deno.land/x/postgresjs@v3.4.4/src/types.js";

type

{ string: { to: number; from; serialize: (x) => unknown; }; number: { to: number; from: number[]; serialize: (x) => unknown; parse: (x) => unknown; }; json: { to: number; from: number[]; serialize: (x) => unknown; parse: (x) => unknown; }; boolean: { to: number; from: number; serialize: (x) => unknown; parse: (x) => unknown; }; date: { to: number; from: number[]; serialize: (x) => unknown; parse: (x) => unknown; }; bytea: { to: number; from: number; serialize: (x) => unknown; parse: (x) => unknown; }; }