Sign in
chromium
/
devtools
/
devtools-frontend.git
/
refs/heads/main
/
.
/
node_modules
/
is-async-function
/
index.d.ts
blob: 515f3cbc9cb2039e5495da5490b04492a359af41 [
file
] [
log
] [
blame
] [
edit
]
import
type
{
AsyncFunction
}
from
'async-function'
;
declare
namespace
isAsyncFunction
{
export
type
{
AsyncFunction
};
}
declare
function
isAsyncFunction
(
fn
:
unknown
):
fn
is
AsyncFunction
;
export
=
isAsyncFunction
;