UNPKG

@themost/jspa

Version:
19 lines (16 loc) 417 B
import { DataContextBase } from '@themost/common'; import { SetCallbackMethod } from './CallbackMethod'; import { EntityConstructor } from './Entity'; function PostLoad() { return SetCallbackMethod(PostLoad); } declare interface PostLoadEvent { context?: DataContextBase, entityClass?: EntityConstructor<unknown>; emitter?: unknown; query?: unknown; } export { PostLoadEvent, PostLoad }