Skip to content

Commit

Permalink
Stup Set/WeakSet/Map/WeakMap
Browse files Browse the repository at this point in the history
  • Loading branch information
davesnx committed Aug 8, 2023
1 parent 5c7c868 commit bdeb0c8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/js/js.ml
Original file line number Diff line number Diff line change
Expand Up @@ -3370,23 +3370,23 @@ let logMany = Console.logMany
module Set = struct
(** Provides bindings for ES6 Set *)

type t
type 'a t
end

module WeakSet = struct
(** Provides bindings for ES6 WeakSet *)

type t
type 'a t
end

module Map = struct
(** Provides bindings for ES6 Map *)

type t
type ('k, 'v) t
end

module WeakMap = struct
(** Provides bindings for ES6 WeakMap *)

type t
type ('k, 'v) t
end

0 comments on commit bdeb0c8

Please sign in to comment.