Skip to content

Commit 7c4188a

Browse files
committed
Get index test passing
1. import & export quibble (I can't figure out how to one-liner this) 2. Remove the three names that are exported as undefined because I can't figure out what to do with them. Hopefully someone in #346 can educate me!
1 parent fac8f58 commit 7c4188a

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/index.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1+
import * as quibble from 'quibble'
2+
13
export { default as function, default as func } from './function'
24
export { default as object } from './object'
35
export { default as constructor } from './constructor'
46
export { default as imitate } from './imitate'
57
export { default as when } from './when'
68
export { default as verify } from './verify'
7-
export { default as matchers, Captor, Created } from './matchers'
9+
export { default as matchers } from './matchers'
810
export { default as replace } from './replace'
911
export { default as explain } from './explain'
1012
export { default as reset } from './reset'
11-
export { default as config, ConfigObject } from './config'
13+
export { default as config } from './config'
1214
export { default as callback } from './callback'
1315
export { default as version } from './version'
14-
export { * as quibble } from 'quibble'
16+
export { quibble }
17+

0 commit comments

Comments
 (0)