From 015083308afde1610d9f7755732ab992f350a579 Mon Sep 17 00:00:00 2001 From: tjoskar Date: Sat, 14 Nov 2020 09:34:22 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20=20Make=20directive=20public?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #486 --- index.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/index.ts b/index.ts index 8897e1b..00d3a12 100644 --- a/index.ts +++ b/index.ts @@ -1,6 +1,7 @@ -export { LazyLoadImageModule } from './src/lazyload-image.module'; export { IntersectionObserverHooks } from './src/intersection-observer-hooks/hooks'; +export { LazyLoadImageDirective } from './src/lazyload-image.directive'; +export { LazyLoadImageModule } from './src/lazyload-image.module'; export { ScrollHooks } from './src/scroll-hooks/hooks'; export { SharedHooks } from './src/shared-hooks/hooks'; -export { Attributes, StateChange, Hooks } from './src/types'; export { LAZYLOAD_IMAGE_HOOKS } from './src/token'; +export { Attributes, Hooks, StateChange } from './src/types';