Skip to content

Commit

Permalink
feat(types): reexport Interaction and MockService namespace #117
Browse files Browse the repository at this point in the history
  • Loading branch information
mefellows committed Nov 5, 2017
1 parent 46a424f commit e1b658f
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion src/pact.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,22 @@ export type PactOptionsComplete = PactOptions & MandatoryPactOptions;
export { verifyProvider } from './dsl/verifier';

/**
* Exposes {@link Matchers#term}
* Exposes {@link Matchers}
* @memberof Pact
* @static
*/
export { term, eachLike, somethingLike, somethingLike as like } from './dsl/matchers';

/**
* Exposes {@link Interaction}
* @memberof Pact
* @static
*/
export * from './dsl/interaction';

/**
* Exposes {@link MockService}
* @memberof Pact
* @static
*/
export * from './dsl/mockService';

0 comments on commit e1b658f

Please sign in to comment.