UNPKG
chrome-debugging-client
Version:
beta (1.0.0-beta.4)
latest (2.1.0)
2.1.0
2.0.0
1.3.1
1.3.0
1.2.0
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
1.0.0-beta.4
1.0.0-beta.2
1.0.0-beta.1
0.6.8
0.6.7
0.6.6
0.6.5
0.6.4
0.6.3
0.6.2
0.6.1
0.6.0
0.5.0
0.4.7
0.4.6
0.4.5
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
0.3.0
0.2.5
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.1
0.1.0
An async/await friendly Chrome debugging client with TypeScript support
chrome-debugging-client
/
dist
/
lib
/
tmpdir-creator.d.ts
11 lines
(10 loc)
•
273 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
Disposable
}
from
"./common"
;
export
interface
ITmpDirCreator
{
create
():
Promise
<
ITmpDir
>; }
export
interface
ITmpDir
extends
Disposable
{
path
:
string
; }
export
default
class
TmpDirCreator
implements
ITmpDirCreator
{
create
():
Promise
<
Disposable
>; }