UNPKG

angular2-mdl

Version:

Angular 2 components, directives and styles based on material design lite https://getmdl.io.

32 lines 1.15 kB
import { NgModule } from '@angular/core'; import { MdlTooltipComponent, MdlSimpleTooltipComponent } from './mdl-tooltip.component'; import { MdlTooltipDirective, MdlTooltipLargeDirective } from './mdl-tooltip.directive'; var MDL_TOOLTIP_DIRECTIVES = [ MdlTooltipComponent, MdlTooltipLargeDirective, MdlTooltipDirective ]; export * from './mdl-tooltip.component'; export * from './mdl-tooltip.directive'; export var MdlTooltipModule = (function () { function MdlTooltipModule() { } MdlTooltipModule.forRoot = function () { return { ngModule: MdlTooltipModule, providers: [] }; }; MdlTooltipModule.decorators = [ { type: NgModule, args: [{ imports: [], exports: MDL_TOOLTIP_DIRECTIVES, declarations: MDL_TOOLTIP_DIRECTIVES.concat([MdlSimpleTooltipComponent]), entryComponents: [MdlSimpleTooltipComponent] },] }, ]; /** @nocollapse */ MdlTooltipModule.ctorParameters = function () { return []; }; return MdlTooltipModule; }()); //# sourceMappingURL=index.js.map