You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
566 B
TypeScript
22 lines
566 B
TypeScript
import { ElementRef, OnDestroy, OnInit, AfterViewChecked } from '@angular/core';
|
|
export declare class FullCalendar implements OnDestroy, OnInit, AfterViewChecked {
|
|
el: ElementRef;
|
|
style: any;
|
|
styleClass: string;
|
|
initialized: boolean;
|
|
calendar: any;
|
|
config: any;
|
|
_options: any;
|
|
_events: any[];
|
|
constructor(el: ElementRef);
|
|
ngOnInit(): void;
|
|
ngAfterViewChecked(): void;
|
|
events: any;
|
|
options: any;
|
|
initialize(): void;
|
|
getCalendar(): any;
|
|
ngOnDestroy(): void;
|
|
}
|
|
export declare class FullCalendarModule {
|
|
}
|