aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular/tooltip/tooltip.module.ts
blob: 8911008451f42e780ceece3de92ece9fd2fd4a63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { NgModule } from '@angular/core';
import { TooltipDirective } from './tooltip.directive';
import { TooltipTemplateComponent } from './tooltip-template.component';
import { CreateDynamicComponentService } from '../utils/create-dynamic-component.service';

@NgModule({
    declarations: [
        TooltipDirective,
        TooltipTemplateComponent
    ],
    imports: [],
    entryComponents: [TooltipTemplateComponent],
    exports: [
        TooltipDirective
    ],
    providers: [CreateDynamicComponentService]
})
export class TooltipModule {
}