|
|
@ -11,6 +11,10 @@ declare module 'ical.js' {
|
|
|
|
|
|
|
|
|
|
|
|
getFirstProperty(name?: string): Property;
|
|
|
|
getFirstProperty(name?: string): Property;
|
|
|
|
getAllProperties(name?: string): Array<Property>;
|
|
|
|
getAllProperties(name?: string): Array<Property>;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
updatePropertyWithValue(name: string, value: string | number | object): Property;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
addSubcomponent(component: Component): Component;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class Event {
|
|
|
|
class Event {
|
|
|
@ -22,6 +26,8 @@ declare module 'ical.js' {
|
|
|
|
location: string;
|
|
|
|
location: string;
|
|
|
|
attendees: Array<Property>;
|
|
|
|
attendees: Array<Property>;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
component: Component;
|
|
|
|
|
|
|
|
|
|
|
|
constructor(component?: Component | null,
|
|
|
|
constructor(component?: Component | null,
|
|
|
|
options?: {strictExceptions: boolean, exepctions: Array<Component|Event>});
|
|
|
|
options?: {strictExceptions: boolean, exepctions: Array<Component|Event>});
|
|
|
|
}
|
|
|
|
}
|
|
|
|