From dc0e5f8b6470046693a48003d4d809bfeaf83221 Mon Sep 17 00:00:00 2001 From: maeriil Date: Mon, 1 Dec 2025 14:18:50 -0500 Subject: [PATCH] only keep query has --- src/jecs.d.ts | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/jecs.d.ts b/src/jecs.d.ts index 77d9886..0d306a5 100755 --- a/src/jecs.d.ts +++ b/src/jecs.d.ts @@ -79,14 +79,6 @@ export type CachedQuery = { archetypes(): Archetype[]; has(entity: Entity): boolean; - - ids: Id[]; - - filter_with?: Id[]; - - filter_without?: Id[]; - - archetypes_map: Map; } & Iter; export type Query = { @@ -123,12 +115,6 @@ export type Query = { archetypes(): Archetype[]; has(entity: Entity): boolean; - - ids: Id[]; - - filter_with?: Id[]; - - filter_without?: Id[]; } & Iter; export class World {