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