From 6c537f3f60aaac8ae850f8ecaefc2a0d04a8431e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Thu, 2 Dec 2021 01:51:28 +0100 Subject: Add basic changelog view --- static/types.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'static/types.ts') diff --git a/static/types.ts b/static/types.ts index 567b9a95..64e2c709 100644 --- a/static/types.ts +++ b/static/types.ts @@ -2,7 +2,8 @@ export { ical_type, valid_input_types, JCalProperty, JCal, - xcal, uid + xcal, uid, + ChangeLogEntry } let all_types = [ @@ -198,3 +199,10 @@ type JCalProperty type JCal = [tagname, JCalProperty[], JCal[]] const xcal = "urn:ietf:params:xml:ns:icalendar-2.0"; + +interface ChangeLogEntry { + type: 'calendar' | 'property', + name: string, + from: string | null, + to: string | null, +} -- cgit v1.2.3