angular-calendar
Version:
A calendar component that can display events on a month, week or day view
20 lines (19 loc) • 376 B
TypeScript
import { ModuleWithProviders } from '@angular/core';
/**
* The main module of this library. Example usage:
*
* ```
* import { CalenderModule } from 'angular-calendar';
*
* @NgModule({
* imports: [
* CalenderModule.forRoot()
* ]
* })
* class MyModule {}
* ```
*
*/
export declare class CalendarModule {
static forRoot(): ModuleWithProviders;
}