UNPKG
@dynatrace/runtime-simulator
Version:
latest (0.14.5)
0.14.5
0.14.4
0.14.2
0.14.0
0.13.0
0.12.0
0.11.6
0.11.5
0.11.4
0.11.2
0.10.0
0.9.1
0.9.0
0.8.3
0.8.2
0.8.0
0.7.0
0.6.0
The Dynatrace JavaScript runtime simulator.
dt-url.net/bm034a8
@dynatrace/runtime-simulator
/
lib
/
src
/
task.d.ts
12 lines
(11 loc)
•
277 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/// <reference types="node" />
import
type
{
ContextConfiguration
}
from
'./context'
;
export
interface
Task
{
cwd
:
string
;
urlPathname
:
string
;
scriptName
:
string
;
code
:
Buffer
;
payload
?:
unknown
;
config
:
ContextConfiguration
;
sourceMap
?:
Buffer
; }