@themost/jspa
Version:
MOST Web Framework Persistence API
18 lines (15 loc) • 410 B
text/typescript
import { DataContextBase, DataModelBase } from '@themost/common';
import { SetCallbackMethod } from './CallbackMethod';
import { EntityConstructor } from './Entity';
function PreInit() {
return SetCallbackMethod(PreInit);
}
declare interface PreInitEvent {
context?: DataContextBase,
entityClass?: EntityConstructor<unknown>;
model?: DataModelBase;
}
export {
PreInitEvent,
PreInit
}