redis-orm-node
Version:
`redis-orm` is a lightweight Object-Relational Mapping (ORM) library for Node.js.
19 lines (14 loc) • 333 B
text/typescript
import { RedisClient } from "../DataSource"
import { Schema } from "./Schema"
export type EntityType =
| "HASH"
// | "JSON"
export type EntityOptions = {
name: string,
type: EntityType
}
export class EntityClass { }
export type EntityDefinition = {
schema: Schema,
connection: RedisClient
}