package caldav

  1. Overview
  2. Docs
type file = [
  1. | `File of string list
]
type dir = [
  1. | `Dir of string list
]
type file_or_dir = [
  1. | file
  2. | dir
]
module type S = sig ... end
module Make (Pclock : Mirage_clock.PCLOCK) (Fs : Mirage_kv.RW) : S with type t = Fs.t