UNPKG

alepha

Version:

Easy-to-use modern TypeScript framework for building many kind of applications.

11 lines (9 loc) 168 B
import { customType } from "drizzle-orm/pg-core"; /** * Postgres bytea type. */ export const byte = customType<{ data: Buffer; }>({ dataType: () => "bytea", });