You can search for identifiers within the package.
in-package search v0.2.0
sihl-contract
Sihl_contract.User
type error =
| AlreadyRegistered
| IncorrectPassword
| InvalidPasswordProvided of string
| DoesNotExist
type t = {
id : string;
email : string;
username : string option;
password : string;
status : string;
admin : bool;
confirmed : bool;
created_at : Ptime.t;
updated_at : Ptime.t;
}
exception Exception of string
val name : string
module type Sig = sig ... end