@themost/jspa
Version:
MOST Web Framework Persistence API
11 lines (10 loc) • 332 B
TypeScript
import { EntityConstructor } from './Entity';
import { DataContextBase } from '@themost/common';
declare function PreLoad(): MethodDecorator;
declare interface PreLoadEvent {
context?: DataContextBase;
entityClass?: EntityConstructor<unknown>;
emitter?: unknown;
query?: unknown;
}
export { PreLoadEvent, PreLoad };