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