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