export type AnyFunction = (...args: any[]) => any export type AnyAsyncFunction = (...args: any[]) => Promise export type AnySyncFunction = (...args: any[]) => Exclude>