@n1k1t/mock-server
Version:
The ultimate toolkit to intercept, transform, and simulate HTTP/WS traffic with type-safe expectations
9 lines • 409 B
TypeScript
import type { ICompiledExpectationOperators } from '../helpers';
import type { IExpectationSchemaContext } from '../../expectations';
export interface IExpectationHandlerContext<TContext extends IExpectationSchemaContext<any>> {
$: ICompiledExpectationOperators<TContext>;
utils: {
transports: <K extends TContext['transport']>(values: K[]) => K[];
};
}
//# sourceMappingURL=types.d.ts.map