diff options
author | Alban Gruin | 2022-02-05 15:16:18 +0100 |
---|---|---|
committer | Alban Gruin | 2022-02-05 15:18:19 +0100 |
commit | a55229d34abeb85d9adaca615c9905c7b06a81e1 (patch) | |
tree | 9735a5e37101dd699bebc6777d403f50d804f935 /src/ics.mli | |
parent | ee3b01bf7027798ba23153aef7f4ccc57f5f7b38 (diff) |
Introduce a new feature to list events without location
This adds a new page listing events without location.
Signed-off-by: Alban Gruin <alban at pa1ch dot fr>
Diffstat (limited to 'src/ics.mli')
-rw-r--r-- | src/ics.mli | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ics.mli b/src/ics.mli index e3dd577..e9e927c 100644 --- a/src/ics.mli +++ b/src/ics.mli @@ -22,6 +22,9 @@ module Event : sig string -> string option -> string list -> t val to_string : string -> t -> int -> string + val format_fields : + (string -> string list -> CalendarLib.Calendar.t -> CalendarLib.Calendar.t -> string) -> + t -> string end type t = Event.t list |