diff --git a/jecs.luau b/jecs.luau index 94402a4c..1b59033e 100644 --- a/jecs.luau +++ b/jecs.luau @@ -1733,7 +1733,7 @@ end export type Id = Entity -type function _Pair(first, second) +export type function Pair(first, second) local thing = first:components()[2] if thing:readproperty(types.singleton("__T")):is("nil") then @@ -1743,8 +1743,6 @@ type function _Pair(first, second) end end -export type Pair = _Pair - type Item = (self: Query) -> (Entity, T...) export type Entity = number & { __T: T }