UNPKG

@miniplex/react

Version:

React glue for Miniplex.

4 lines (3 loc) 303 B
import { Bucket, IEntity, World } from "@miniplex/core"; export declare const useEntities: <E extends IEntity>(bucket: Bucket<E>) => E[]; export declare const useArchetype: <E extends IEntity, P extends keyof E>(world: World<E>, ...properties: P[]) => import("@miniplex/core").WithRequiredKeys<E, P>[];