type Func<A,R>
Convenience type for a function.
Definition
export type Func<A extends any[] = any[], R = any> = (...args: A) => R;
type Func<A,R>
Convenience type for a function.
export type Func<A extends any[] = any[], R = any> = (...args: A) => R;