UNPKG

@n1k1t/mock-server

Version:

Powerful util to setup mocks over HTTP APIs

9 lines 699 B
import { ExpectationOperator } from '../models/operator'; import { IExpectationSchemaContext, IExpectationOperatorsSchema, TExpectationMetaTag, TExpectationOperatorLocation } from '../types'; export default class AndExpectationOperator<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=and.operator.d.ts.map