/** RejectFunction represents the reject part of a promise. */
export type RejectFunction = (err: Error) => void;
