UNPKG

@themost/jspa

Version:
10 lines (9 loc) 334 B
import { DataContextBase, DataModelBase } from '@themost/common'; import { EntityConstructor } from './Entity'; declare function PostInit(): MethodDecorator; declare interface PostInitEvent { context?: DataContextBase; entityClass?: EntityConstructor<unknown>; model?: DataModelBase; } export { PostInitEvent, PostInit };