|
|
@ -3,8 +3,12 @@ declare module 'ical.js' {
|
|
|
|
class Component {
|
|
|
|
class Component {
|
|
|
|
name: string;
|
|
|
|
name: string;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static fromString(str: string): Component;
|
|
|
|
|
|
|
|
|
|
|
|
constructor(jCal: Array<any> | string, parent?: Component);
|
|
|
|
constructor(jCal: Array<any> | string, parent?: Component);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
toJSON(): Array<any>;
|
|
|
|
|
|
|
|
|
|
|
|
getFirstSubcomponent(name?: string): Component | null;
|
|
|
|
getFirstSubcomponent(name?: string): Component | null;
|
|
|
|
|
|
|
|
|
|
|
|
getFirstPropertyValue(name?: string): any;
|
|
|
|
getFirstPropertyValue(name?: string): any;
|
|
|
|