FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
code-oss/scripts/debugger-scripts-api.d.ts at code-oss-esm · unlicense-code/code-oss · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
unlicense-code
/
code-oss
Public
forked from
lemanschik/code-oss
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
1
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
code-oss
/
scripts
/
debugger-scripts-api.d.ts
Copy path
More file actions
More file actions
Latest commit
History
History
History
35 lines (28 loc) · 1.12 KB
Breadcrumbs
code-oss
/
scripts
/
debugger-scripts-api.d.ts
Copy path
File metadata and controls
35 lines (28 loc) · 1.12 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
type
RunFunction
=
|
(
(
debugSession
:
IDebugSession
,
context
:
Context
)
=>
IDisposable
)
|
(
(
debugSession
:
IDebugSession
,
context
:
Context
)
=>
Promise
<
IDisposable
>
)
;
interface
IDebugSession
{
name
:
string
;
eval
(
expression
:
string
)
:
Promise
<
unknown
>
;
evalJs
<
T
extends
any
[
]
,
TResult
>
(
bodyFn
:
(
...
args
:
T
)
=>
TResult
,
...
args
:
T
)
:
Promise
<
TResult
>
;
}
interface
Context
{
vscode
:
typeof
import
(
'vscode'
)
;
}
interface
IDisposable
{
dispose
(
)
:
void
;
}
interface
HotReloadConfig
{
mode
?:
'patch-prototype'
|
undefined
;
}
interface
GlobalThisAddition
{
$hotReload_applyNewExports
?
(
args
:
{
oldExports
:
Record
<
string
,
unknown
>
;
newSrc
:
string
;
config
?:
HotReloadConfig
}
)
:
AcceptNewExportsFn
|
undefined
;
}
type
AcceptNewExportsFn
=
(
newExports
:
Record
<
string
,
unknown
>
)
=>
boolean
;
Back
|
FazBrowse Home
|
New Git URL