@themost/jspa
Version:
MOST Web Framework Persistence API
11 lines (10 loc) • 443 B
TypeScript
import { ColumnAnnotation } from './Column';
declare interface AttributeOverrideAnnotation {
name: string;
column: ColumnAnnotation;
}
declare interface EntityAttributeOverrideAnnotation {
AttributeOverrides?: AttributeOverrideAnnotation[];
}
declare function AttributeOverride(annotation?: AttributeOverrideAnnotation): ClassDecorator;
export { AttributeOverrideAnnotation, EntityAttributeOverrideAnnotation, AttributeOverride };