import {EntitySchemaOptions} from "./EntitySchemaOptions"; /** * Interface for entity metadata mappings stored inside "schemas" instead of models decorated by decorators. */ export class EntitySchema { constructor(public options: EntitySchemaOptions) { } }