export type Maybe<T> = T | null | undefined;

export type MaybePromise<T> = Promise<T> | T;
