@n1k1t/mock-server
Version:
Powerful util to setup mocks over HTTP APIs
14 lines • 653 B
TypeScript
import { IExpectationSchemaContext, TExpectationMetaTag, TExpectationOperatorLocation } from '../types';
import { ExpectationOperator } from '../models/operator';
export default class RemoveExpectationOperator<TContext extends IExpectationSchemaContext, TLocation extends TExpectationOperatorLocation = TExpectationOperatorLocation> extends ExpectationOperator<TContext, {
[K in TLocation]: {
$location: K;
$path?: string;
$jsonPath?: string;
};
}[TLocation]> {
get tags(): TExpectationMetaTag[];
match(): boolean;
manipulate<T extends TContext>(context: T): T;
}
//# sourceMappingURL=remove.operator.d.ts.map