Change RecurrenceID to Date type

Change RecurrenceID to Date type like SharePoint Standard functionality to solve the issue of deleting one occurrence of recurrent event
This commit is contained in:
mohammadamer 2021-03-18 18:02:12 +02:00 committed by GitHub
parent 4cecbce672
commit 2aa033e372
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -20,6 +20,6 @@ export interface IEventData {
fRecurrence?: string | boolean;
EventType?: string;
UID?: string;
RecurrenceID?: string;
RecurrenceID?: Date;
MasterSeriesItemID?: string;
}