UNPKG

redis-orm-node

Version:

`redis-orm` is a lightweight Object-Relational Mapping (ORM) library for Node.js.

15 lines (14 loc) 262 B
export type PropertyOption = { type: "text"; } | { type: "numeric"; sortable?: true | 'UNF'; noindex?: true; } | { type: "tag"; }; export type PropertyMetadata = { object: object; propertyName: string; options: PropertyOption; };