export type AsyncOrSync<Type> = PromiseLike<Type> | Type;
