Compare commits

...

2 commits

Author SHA1 Message Date
Laud Boateng
9514138b10
Merge a2a9d080b9 into c8884c8eac 2024-12-27 18:20:10 -08:00
Laud Boateng
a2a9d080b9
Update jecs.d.ts
Added cached to the query type
2024-12-27 00:37:13 -05:00

4
jecs.d.ts vendored
View file

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