missing type aliases (see #173)

This commit is contained in:
Simon Cruanes 2018-01-04 08:53:33 -06:00
parent d76831a8c3
commit a160ae3672

View file

@ -8,6 +8,10 @@
type 'a sequence = ('a -> unit) -> unit type 'a sequence = ('a -> unit) -> unit
include module type of Format include module type of Format
with type formatter = Format.formatter
and type formatter_out_functions = Format.formatter_out_functions
and type formatter_tag_functions = Format.formatter_tag_functions
type t = Format.formatter type t = Format.formatter
type 'a printer = t -> 'a -> unit type 'a printer = t -> 'a -> unit