/** * Status of a promise. */ export type PromiseStatus = "idle" | "pending" | "fulfilled" | "rejected";