UNPKG

@themost/jspa

Version:
18 lines (15 loc) 415 B
import { DataContextBase, DataModelBase } from '@themost/common'; import { SetCallbackMethod } from './CallbackMethod'; import { EntityConstructor } from './Entity'; function PostInit() { return SetCallbackMethod(PostInit); } declare interface PostInitEvent { context?: DataContextBase, entityClass?: EntityConstructor<unknown>; model?: DataModelBase; } export { PostInitEvent, PostInit }