export * from './calendar'; export * from './date-helper'; export * from './utils'; import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { CalendarModule } from './calendar/calendar.module'; import { DateHelperModule } from './date-helper/date-helper.module'; @NgModule({ imports: [ CommonModule, CalendarModule ], exports: [ CalendarModule, DateHelperModule ] }) export class AngularLiteUIModule { }