@themost/jspa
Version:
MOST Web Framework Persistence API
10 lines (9 loc) • 330 B
TypeScript
import { DataContextBase, DataModelBase } from '@themost/common';
import { EntityConstructor } from './Entity';
declare function PreInit(): MethodDecorator;
declare interface PreInitEvent {
context?: DataContextBase;
entityClass?: EntityConstructor<unknown>;
model?: DataModelBase;
}
export { PreInitEvent, PreInit };