From 7a4881b1011c5ef871a3cf7c219ec07a22ec3c1f Mon Sep 17 00:00:00 2001 From: Kris <34139730+krisgardiner@users.noreply.github.com> Date: Tue, 27 Oct 2020 12:48:42 -0400 Subject: [PATCH] Add created and lastModified to EventAttributes type (#155) --- index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.d.ts b/index.d.ts index 23be9b9..b19fe55 100644 --- a/index.d.ts +++ b/index.d.ts @@ -85,6 +85,8 @@ export type EventAttributes = { recurrenceRule?: string; sequence?: number; calName?: string; + created?: DateArray; + lastModified?: DateArray; } & ({ end: DateArray } | { duration: DurationObject }); export type ReturnObject = { error?: Error; value?: string };