type MethodCall<T,K>
A method call tuple containing the called method name first, and then the corresponding parameters used.
Definition
type MethodCall<T, K extends keyof T = keyof T> = readonly [
method: K,
...args: T[K] extends
Func
? Parameters<T[K]> : unknown[]
];