From ad1ee31e57faa43000333fced64d3c787475e590 Mon Sep 17 00:00:00 2001 From: daimond113 Date: Wed, 20 Aug 2025 14:51:35 +0200 Subject: [PATCH] Correct --- jecs.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jecs.d.ts b/jecs.d.ts index f5aeb0d..3c885e2 100755 --- a/jecs.d.ts +++ b/jecs.d.ts @@ -346,10 +346,10 @@ export function bulk_insert( ): void; export function bulk_remove(world: World, entity: Entity, ids: Id[]): void; -export type EntityRecord = { - archetype: Archetype<[E]>, +export type EntityRecord = { + archetype: Archetype, row: number, dense: number, }; -export function record(world: World, entity: E): EntityRecord; \ No newline at end of file +export function record(world: World, entity: Entity): EntityRecord;