mirror of
https://github.com/chenasraf/DefinitelyTyped.git
synced 2026-05-18 01:49:01 +00:00
8 lines
313 B
TypeScript
8 lines
313 B
TypeScript
// Type definitions for deasync-promise 1.0
|
|
// Project: https://github.com/jakwuh/deasync-promise
|
|
// Definitions by: ArthurKa <https://github.com/ArthurKa>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function deasyncPromise<T>(promise: PromiseLike<T>): T;
|
|
export = deasyncPromise;
|