source:
imaps-frontend/node_modules/is-async-function/index.d.ts
Last change on this file was 79a0317, checked in by , 3 days ago | |
---|---|
|
|
File size: 207 bytes |
Line | |
---|---|
1 | declare namespace isAsyncFunction { |
2 | type AsyncFunction = (...args: any[]) => Promise<any> |
3 | } |
4 | |
5 | declare function isAsyncFunction(fn: unknown): fn is isAsyncFunction.AsyncFunction; |
6 | |
7 | export = isAsyncFunction; |
Note:
See TracBrowser
for help on using the repository browser.