From 1b1ae947d9f702cb27d359010e850a943faee2b9 Mon Sep 17 00:00:00 2001 From: Shane <58125798+outofbearspace@users.noreply.github.com> Date: Tue, 30 Apr 2024 16:55:48 -0700 Subject: [PATCH] export Query type --- lib/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/init.lua b/lib/init.lua index ccf4c89..8bffd3e 100644 --- a/lib/init.lua +++ b/lib/init.lua @@ -361,7 +361,7 @@ local EmptyQuery = { } EmptyQuery.__index = EmptyQuery -type Query = typeof(setmetatable({}, EmptyQuery)) +export type Query = typeof(setmetatable({}, EmptyQuery)) function World.query(world: World, ...: i53): Query local compatibleArchetypes = {}