Skip to content

Commit 8a072ba

Browse files
committed
Reexport Row.Union, hide Cons due to conflicting exports
1 parent 98f5381 commit 8a072ba

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Type/Prelude.purs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module Type.Prelude
1010
import Type.Data.Boolean (kind Boolean, True, False, BProxy(..), class IsBoolean, reflectBoolean, reifyBoolean)
1111
import Type.Data.Ordering (kind Ordering, LT, EQ, GT, OProxy(..), class IsOrdering, reflectOrdering, reifyOrdering)
1212
import Type.Proxy (Proxy(..))
13-
import Type.Data.Symbol (SProxy(..), class IsSymbol, reflectSymbol, reifySymbol, class Compare, compare, class Append, append, class Cons, uncons)
13+
import Type.Data.Symbol (SProxy(..), class IsSymbol, reflectSymbol, reifySymbol, class Compare, compare, class Append, append)
1414
import Type.Equality (class TypeEquals, from, to)
15-
import Type.Row (class Lacks, class RowToList, class ListToRow, RProxy(..), RLProxy(..))
15+
import Type.Row (class Union, class Lacks, class RowToList, class ListToRow, RProxy(..), RLProxy(..))
1616

src/Type/Row.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ module Type.Row
1212
, type (+)
1313
) where
1414

15-
import Prim.Row (class Lacks, class Nub, class Cons)
15+
import Prim.Row (class Lacks, class Nub, class Cons, class Union)
1616
import Prim.RowList (kind RowList, Cons, Nil, class RowToList)
1717
import Type.Equality (class TypeEquals)
1818
import Type.Data.Symbol as Symbol

0 commit comments

Comments
 (0)