mirror of
https://github.com/sern-handler/website
synced 2026-06-21 23:32:22 +00:00
3 lines
182 B
TypeScript
3 lines
182 B
TypeScript
export declare function isPromise<T = any>(value: any): value is Promise<T>;
|
|
export declare function streamAsyncIterator(stream: ReadableStream): AsyncGenerator<any, void, unknown>;
|