0.2.0 • Published 7 months ago

@postgresql-typed/oids v0.2.0

Weekly downloads
-
License
MPL-2.0
Repository
github
Last release
7 months ago
npm install --save @postgresql-typed/oids
import { OID, OIDs } from "@postgresql-typed/oids";

console.log(OID.uuid); // 2950

let oid: OIDs = "uuid"; // Has autocomplete when using OIDs as the TypeScript type

console.log(OID[oid]); // 2950