import { Trait, World } from "koota"; //#region src/ecs/snapshot.d.ts declare const ENTITY_ID_MASK: number; /** * Resolve SoA store arrays for a trait in a world. * Returns a record mapping field names to their backing number[] arrays. * These references are stable for the lifetime of the world. */ declare function resolveStore(world: World, trait: Trait): Record; //#endregion export { ENTITY_ID_MASK, resolveStore }; //# sourceMappingURL=snapshot.d.ts.map