UNPKG

312 BTypeScriptView Raw
1import { EntitySchemaOptions } from "./EntitySchemaOptions";
2/**
3 * Interface for entity metadata mappings stored inside "schemas" instead of models decorated by decorators.
4 */
5export declare class EntitySchema<T = any> {
6 options: EntitySchemaOptions<T>;
7 constructor(options: EntitySchemaOptions<T>);
8}