breeze2-odata4
Version:
Library to allow OData 4 support for breezejs 2
10 lines (9 loc) • 395 B
TypeScript
import { Edm } from 'ts-odatajs';
import { AnnotationDecorator } from './annotation-decorator';
export interface ExpressionWithDisplayName extends Edm.Base.Annotatable {
displayName?: string;
}
export declare class DisplayNameDecorator implements AnnotationDecorator {
annotation: string;
decorate(expression: ExpressionWithDisplayName, annotation: Edm.Annotation): void;
}