@clickup/ent-framework
Version:
A PostgreSQL graph-database-alike library with microsharding and row-level security
10 lines • 426 B
TypeScript
/**
* An array of Strings. Note: node-postgres natively supports this type on read
* path, but on write path, we have to stringify by ourselves.
*/
export declare function StringArrayType(): {
dbValueToJs: (dbValue: Array<string | null>) => Array<string | null>;
stringify: (jsValue: Array<string | null>) => string;
parse: (str: string) => Array<string | null>;
};
//# sourceMappingURL=StringArrayType.d.ts.map