Ical.js types: add support for getting all subcomponents.

master
Tom Hacohen 2019-03-27 14:09:04 +00:00
parent be43fd5b51
commit 5de1087a2a
1 changed files with 1 additions and 0 deletions

View File

@ -10,6 +10,7 @@ declare module 'ical.js' {
public toJSON(): any[];
public getFirstSubcomponent(name?: string): Component | null;
public getAllSubcomponents(name?: string): Component[];
public getFirstPropertyValue(name?: string): any;