@themost/jspa
Version:
MOST Web Framework Persistence API
20 lines (17 loc) • 471 B
text/typescript
import { DataContextBase, DataModelBase } from '@themost/common';
import { SetCallbackMethod } from './CallbackMethod';
import { EntityConstructor } from './Entity';
function PostUpdate() {
return SetCallbackMethod(PostUpdate);
}
declare interface PostUpdateEvent {
context?: DataContextBase,
entityClass?: EntityConstructor<unknown>;
model?: DataModelBase;
target?: unknown;
previous?: unknown;
}
export {
PostUpdateEvent,
PostUpdate
}