import { FailablePromise } from "./ts-failable"; /** * Helper type for an async function that * takes Req and returns a {@link FailablePromise}. */ export declare type AsyncFunction = (req: Req) => FailablePromise;