blob: 6b2517ee625090a0a44a31e1fc12736a932f93e2 [file] [log] [blame]
export type PromiseOrValue<T> = Promise<T> | T;