pg-mem
Version:
A memory version of postgres
10 lines • 324 B
TypeScript
export declare const SCHEMA_NAMESPACE = 11;
export declare const MAIN_NAMESPACE = 2200;
type OidType = 'table' | 'index';
export declare function makeOid(type: OidType, id: string): string;
export declare function parseOid(oid: string): {
type: OidType;
id: string;
};
export {};
//# sourceMappingURL=consts.d.ts.map