Up
Module
Command
Signature
module
Invocation
: sig .. end
module type
T
= sig .. end
module type
T_conv
= sig .. end
module type
T_pipe
= sig .. end
type
t = [
| `Pipe
of
(
module
T_pipe
)
| `Plain
of
(
module
T
)
| `Plain_conv
of
(
module
T_conv
)
]
val
create : summary:string ->
t
list ->
Async.Std.Command.t