export type Fn = (...args: any[]) => any;

export type AsyncFn = (...args: any[]) => Promise<any>;
