From 6203ffc75493ff8899d2beab95b44cf4e7118c85 Mon Sep 17 00:00:00 2001 From: Eduardo Born Date: Fri, 10 Mar 2017 16:21:28 -0600 Subject: [PATCH] Expanding wildcard exports to allow code to be used with Closure Compiler --- index.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.ts b/index.ts index e28ab20..6b0e25b 100644 --- a/index.ts +++ b/index.ts @@ -1,4 +1,4 @@ -export * from './src/operator/enterZone'; -export * from './src/operator/leaveZone'; -export * from './src/operator/select'; -export * from './src/compose'; \ No newline at end of file +export { enterZone, EnterZoneSignature, EnterZoneOperator } from './src/operator/enterZone'; +export { leaveZone, LeaveZoneSignature, LeaveZoneOperator } from './src/operator/leaveZone'; +export { SelectSignature, select } from './src/operator/select'; +export { ComposeSignature, compose } from './src/compose';