This commit is contained in:
Laud Boateng 2025-01-02 15:53:36 +02:00 committed by GitHub
commit c48baa02d9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

4
jecs.d.ts vendored
View file

@ -75,6 +75,10 @@ export type Query<T extends unknown[]> = {
* @returns A new Query with the exclusion applied.
*/
without(...components: Id[]): Query<T>;
/**
* Caches the query
*/
cached(): Query<T>;
} & Iter<T>;
export class World {