export type CallbackWithValue = | ((e: T) => void) | ((e: T) => Promise) | null | undefined; export type Callback = (() => void) | (() => Promise) | null | undefined;