type RunEffect = "delay" | "debounce" | "throttle";
type Status = "error" | "pending" | "success" | "aborted" | "initial";

export { RunEffect, Status };
