UNPKG

redis-orm-node

Version:

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

11 lines (9 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 }