@wpkernel/core / ParamsOf
Type Alias: ParamsOf<K, Key>
ts
type ParamsOf<K, Key> = K[Key] extends void ? [] : [K[Key]];Extract the tuple type used for params in can/assert helpers. Ensures that void params are optional while others remain required.
Type Parameters
K
K
Key
Key extends keyof K
