fullcalendar.d.ts 566 B

123456789101112131415161718192021
  1. import { ElementRef, OnDestroy, OnInit, AfterViewChecked } from '@angular/core';
  2. export declare class FullCalendar implements OnDestroy, OnInit, AfterViewChecked {
  3. el: ElementRef;
  4. style: any;
  5. styleClass: string;
  6. initialized: boolean;
  7. calendar: any;
  8. config: any;
  9. _options: any;
  10. _events: any[];
  11. constructor(el: ElementRef);
  12. ngOnInit(): void;
  13. ngAfterViewChecked(): void;
  14. events: any;
  15. options: any;
  16. initialize(): void;
  17. getCalendar(): any;
  18. ngOnDestroy(): void;
  19. }
  20. export declare class FullCalendarModule {
  21. }