pact-foundation/pact-js

View on GitHub
src/v4/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { V4UnconfiguredInteraction } from './http/types';
import { V4UnconfiguredSynchronousMessage } from './message/types';

export interface V4ConsumerPact {
  addInteraction(): V4UnconfiguredInteraction;
  addSynchronousInteraction(
    description: string
  ): V4UnconfiguredSynchronousMessage;
}