diff --git a/jecs.d.ts b/jecs.d.ts index a343b4e..284b612 100644 --- a/jecs.d.ts +++ b/jecs.d.ts @@ -75,6 +75,10 @@ export type Query = { * @returns A new Query with the exclusion applied. */ without(...components: Id[]): Query; + /** + * Caches the query + */ + cached(): Query; } & Iter; export class World {