@themost/jspa
Version:
MOST Web Framework Persistence API
10 lines (9 loc) • 377 B
TypeScript
import { InheritanceType } from './InheritanceType';
declare interface InheritanceAnnotation {
strategy: InheritanceType;
}
declare interface EntityInheritanceAnnotation {
Inheritance?: InheritanceAnnotation;
}
declare function Inheritance(annotation?: InheritanceAnnotation): ClassDecorator;
export { InheritanceAnnotation, EntityInheritanceAnnotation, Inheritance };