3 lines
117 B
TypeScript

declare function isPending(promise: Promise<unknown>, timeout?: number): Promise<unknown>;
export default isPending;