-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapiDump.mli
23 lines (19 loc) · 1.2 KB
/
apiDump.mli
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(* ************************************************************************** *)
(* Project: Life - the game, Official OCaml SDK *)
(* Author: db0 ([email protected], http://db0.fr/) *)
(* Latest Version is on GitHub: https://github.com/Life-the-game/SDK-OCaml *)
(* ************************************************************************** *)
(** Pretty print the values returned by the API library *)
(* ************************************************************************** *)
(** {3 Tools} *)
(* ************************************************************************** *)
val lprint_string : string -> unit
val lprint_endline : string -> unit
val verbose : string -> unit
(* ************************************************************************** *)
(** {3 Dump results in a human readable format} *)
(* ************************************************************************** *)
val available_languages : unit -> unit
val error : ApiError.t -> unit
val page : 'a ApiTypes.Page.t -> ('a -> unit) -> unit
val print : 'a -> unit