@n1k1t/mock-server
Version:
Powerful util to setup mocks over HTTP APIs
9 lines • 697 B
TypeScript
import { ExpectationOperator } from '../models/operator';
import { IExpectationSchemaContext, IExpectationOperatorsSchema, TExpectationMetaTag, TExpectationOperatorLocation } from '../types';
export default class OrExpectationOperator<TContext extends IExpectationSchemaContext, TLocation extends TExpectationOperatorLocation = TExpectationOperatorLocation, TValue = void> extends ExpectationOperator<TContext, IExpectationOperatorsSchema<TContext, TLocation, TValue>[]> {
compiled: ExpectationOperator<TContext, any>[];
get tags(): TExpectationMetaTag[];
match(context: TContext): boolean;
manipulate<T extends TContext>(context: T): T;
}
//# sourceMappingURL=or.operator.d.ts.map