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