From a2c544de543343ad4135f0419f1548ed1cf502cb Mon Sep 17 00:00:00 2001 From: Idan Amit Date: Thu, 19 Jul 2018 12:05:50 +0300 Subject: sdc-pubsub first commit Committed sdc-pubsub code for the first time to LF repo Change-Id: I1e26f7fe8b2f1747169e3101e0705d1c89d3f56b Issue-ID: SDC-1537 Signed-off-by: Idan Amit --- index.ts | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 index.ts (limited to 'index.ts') diff --git a/index.ts b/index.ts new file mode 100644 index 0000000..69e923c --- /dev/null +++ b/index.ts @@ -0,0 +1,4 @@ +import { BasePubSub, IPubSubEvent, ISubscriber } from './lib/base-pubsub'; +import { PluginPubSub } from './lib/plugin-pubsub'; + +export { BasePubSub, PluginPubSub, IPubSubEvent, ISubscriber }; -- cgit 1.2.3-korg