InferParams
InferParams<
P> ={ [K in keyof P]: InferParam<P[K]> }
Defined in: ecs/system.ts:124
The values a system body receives, derived from the parameters it declared —
a Query(...) becomes a QueryInstance, a Res(X) becomes the resource
value. Inferred, so a system body’s arguments are typed without annotation.
Type Parameters
Section titled “Type Parameters”P extends readonly SystemParam[]