UNPKG

@themost/jspa

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