type asyncFunction = (...args: unknown[]) => Promise; /** * Wrap an async function so it prepends an error message on exceptions. * This helps locate errors. */ export declare const addAsyncErrorMessage: (asyncFunc: asyncFunction, message: string) => asyncFunction; export {};