TS types
A very simple helper types for typescript.
Func
type Func = (...args: any[]) => any;
UntypedObject
type UntypedObject = Record<string, any>;
A very simple helper types for typescript.
type Func = (...args: any[]) => any;
type UntypedObject = Record<string, any>;