export type Unawaitable = Omit & { then: never; }; /** * Wraps an object in a protective coating that prevents .then() recursion. * @param argument object to be wrapped * @returns the wrapped object */ export declare function unawaitable( argument: T ): Unawaitable; export default unawaitable;