mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-28 16:45:10 +08:00
9 lines
348 B
TypeScript
9 lines
348 B
TypeScript
// Type definitions for p-do-whilst 0.1
|
|
// Project: https://github.com/sindresorhus/p-do-whilst#readme
|
|
// Definitions by: BendingBender <https://github.com/BendingBender>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export = pDoWhilst;
|
|
|
|
declare function pDoWhilst(action: () => any, condition: () => boolean): Promise<void>;
|