Remove entity type intersection

This commit is contained in:
Ketasaja 2025-02-08 16:25:35 +00:00
parent 1d1b7b099a
commit 8438812b41
No known key found for this signature in database
GPG key ID: CFEC764C3F7ADC69

View file

@ -2196,7 +2196,7 @@ function World.new()
return self
end
export type Entity<T = nil> = number & { __T: T }
export type Entity<T = nil> = T
export type Id<T = nil> =
| Entity<T>