JsonSerializableParameters TypeAlias
@fluidframework/core-interfaces#JsonSerializable 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 JsonSerializableParameters<T extends (...args: any) => any> = T extends (...args: infer P) => any ? JsonSerializable<P> : never;
Type Parameters
Parameter | Constraint | Description |
---|---|---|
T | (...args: any) => any |