Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

Commit

Permalink
fix: no need for tslib
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Jan 26, 2018
1 parent 5bf21be commit b0e248a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import base, {Base, Context, Plugin} from './base'
import _catch from './catch'
import {expect} from './chai'
import env, {EnvOptions} from './env'
import nock, {NockScope} from './nock'
import {stderr, stdout} from './stdmock'
Expand All @@ -16,11 +17,11 @@ export const fancy = base
export type Fancy = typeof fancy

export {
Context,
Base,
Plugin,
Context,
EnvOptions,
NockScope,
Plugin,
expect,
}
export default fancy
export * from './chai'

0 comments on commit b0e248a

Please sign in to comment.