From 208c1cabd1888711b01488fdddea74c4e8fa6709 Mon Sep 17 00:00:00 2001 From: jong_hui <42797995+jong-hui@users.noreply.github.com> Date: Tue, 22 Dec 2020 21:59:16 +0900 Subject: [PATCH] fix(react-scheduler): Add missing type --- .../src/types/editing/appointment-tooltip.types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/dx-react-scheduler/src/types/editing/appointment-tooltip.types.ts b/packages/dx-react-scheduler/src/types/editing/appointment-tooltip.types.ts index bbd63492a3..0a4b3feb73 100644 --- a/packages/dx-react-scheduler/src/types/editing/appointment-tooltip.types.ts +++ b/packages/dx-react-scheduler/src/types/editing/appointment-tooltip.types.ts @@ -62,6 +62,8 @@ export namespace AppointmentTooltip { export interface ContentProps { /** The appointment’s displayed metadata. */ appointmentData?: AppointmentModel; + /** The appointment's resource items. */ + appointmentResources: Array; /** A function that formats dates according to the locale. */ formatDate: FormatterFn; /** A component that renders an icon that indicates a recurring appointment. */