@clickup/ent-framework
Version:
A PostgreSQL graph-database-alike library with microsharding and row-level security
10 lines • 399 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<T extends string | null = string | null>(): {
dbValueToJs: (dbValue: T[]) => T[];
stringify: (jsValue: T[]) => string;
parse: (str: string) => T[];
};
//# sourceMappingURL=StringArrayType.d.ts.map