package sihl-contract

  1. Overview
  2. Docs
type file = {
  1. id : string;
  2. filename : string;
  3. filesize : int;
  4. mime : string;
}
type stored = {
  1. file : file;
  2. blob : string;
}
val name : string
exception Exception of string
module type Sig = sig ... end