周期性日程新增字段

Change-Id: I7a167f8a97b5840b8c5b7dbed9d72c85519610cf
Signed-off-by: x00600181 <xuzhiqiang24@huawei.com>
This commit is contained in:
x00600181 2024-08-02 16:36:19 +08:00
parent 6da5da5e49
commit a7037f0e0a

View File

@ -1046,58 +1046,58 @@ declare namespace calendarManager {
excludedDates?: number[];
/**
* Repeat by day of week.
* @type { ?Week[] }
* @syscap SystemCapability.Applications.CalendarData
* @atomicservice
* @since 12
*/
byWeekDay?: Week[];
/**
* Repeat by month week.
* The days of the week associated with the recurrence event.
* @type { ?number[] }
* @syscap SystemCapability.Applications.CalendarData
* @atomicservice
* @since 12
*/
byWeekNum?: number[];
daysOfWeek?: number[];
/**
* Repeat week of year.
* The days of the month associated with the recurrence event.
* @type { ?number[] }
* @syscap SystemCapability.Applications.CalendarData
* @atomicservice
* @since 12
*/
byWeek?: number[];
daysOfMonth?: number[];
/**
* Repeat by day of the month.
* The days of the year associated with the recurrence event.
* @type { ?number[] }
* @syscap SystemCapability.Applications.CalendarData
* @atomicservice
* @since 12
*/
byMonthDay?: number[];
daysOfYear?: number[];
/**
* Repeat by month of year.
* The weeks of the month associated with the recurrence event.
* @type { ?number[] }
* @syscap SystemCapability.Applications.CalendarData
* @atomicservice
* @since 12
*/
byMonth?: number[];
weeksOfMonth?: number[];
/**
* Repeat by day of year.
* The weeks of the year associated with the recurrence event.
* @type { ?number[] }
* @syscap SystemCapability.Applications.CalendarData
* @atomicservice
* @since 12
*/
byYearDay?: number[];
weeksOfYear?: number[];
/**
* The months of the year associated with the recurrence event.
* @type { ?number[] }
* @syscap SystemCapability.Applications.CalendarData
* @atomicservice
* @since 12
*/
monthsOfYear?: number[];
}
/**