We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f6ecc2 commit 198b702Copy full SHA for 198b702
lib/ppx/ppx_js.ml
@@ -89,13 +89,13 @@ let inject_args args =
89
90
module Arg : sig
91
type t
92
- val make : ?label:arg_label -> unit -> t
+ val make : ?label:Label.t -> unit -> t
93
val name : t -> string
94
val typ : t -> core_type
95
- val label : t -> arg_label
96
- val args : t list -> (arg_label * core_type) list
+ val label : t -> Label.t
+ val args : t list -> (Label.t * core_type) list
97
end = struct
98
- type arg = { label : arg_label;
+ type arg = { label : Label.t;
99
name : string }
100
101
type t = arg
0 commit comments