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