-
Notifications
You must be signed in to change notification settings - Fork 53
/
index.ts
31 lines (29 loc) · 926 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { UICarouselComponent } from './ui-carousel/ui-carousel.component';
import { UICarouselItemComponent } from './ui-carousel-item/ui-carousel-item.component';
import { SwiperDirective } from './directives/swiper.directive';
import { UILazyloadDirective } from './directives/ui-lazy-load.directive';
import { DotsComponent } from './dots/dots.component';
import { ArrowComponent } from './arrow/arrow.component';
@NgModule({
imports: [
CommonModule
],
exports: [
UICarouselComponent,
UICarouselItemComponent,
UILazyloadDirective
],
declarations: [
UICarouselComponent,
UICarouselItemComponent,
DotsComponent,
ArrowComponent,
SwiperDirective,
UILazyloadDirective
],
providers: [
],
})
export class UICarouselModule { }