@n1k1t/mock-server
Version:
The ultimate toolkit to intercept, transform, and simulate HTTP/WS traffic with type-safe expectations
14 lines • 671 B
TypeScript
import { IExpectationMeta, IExpectationSchemaContext, 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(): IExpectationMeta['tags'];
match(): Promise<boolean>;
manipulate<T extends TContext>(context: T): Promise<T>;
}
//# sourceMappingURL=remove.operator.d.ts.map