JsonDeserializedParameters TypeAlias
@fluidframework/core-interfaces#JsonDeserialized version of the parameters of a function.
This API is reserved for internal system use and should not be imported directly. It may change at any time without notice.
For more information about our API support guarantees, see here.
Signature
type JsonDeserializedParameters<T extends (...args: any) => any> = T extends (...args: infer P) => any ? JsonDeserialized<P> : never;
Type Parameters
Parameter | Constraint | Description |
---|---|---|
T | (...args: any) => any |