You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: types/vscode-proposed/index.d.ts
+19Lines changed: 19 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -730,3 +730,22 @@ export namespace notebook {
730
730
priority?: number
731
731
): NotebookCellStatusBarItem;
732
732
}
733
+
734
+
//#region debug
735
+
736
+
/**
737
+
* A DebugProtocolVariableContainer is an opaque stand-in type for the intersection of the Scope and Variable types defined in the Debug Adapter Protocol.
738
+
* See https://microsoft.github.io/debug-adapter-protocol/specification#Types_Scope and https://microsoft.github.io/debug-adapter-protocol/specification#Types_Variable.
739
+
*/
740
+
exportinterfaceDebugProtocolVariableContainer{
741
+
// Properties: the intersection of DAP's Scope and Variable types.
742
+
}
743
+
744
+
/**
745
+
* A DebugProtocolVariable is an opaque stand-in type for the Variable type defined in the Debug Adapter Protocol.
746
+
* See https://microsoft.github.io/debug-adapter-protocol/specification#Types_Variable.
747
+
*/
748
+
exportinterfaceDebugProtocolVariable{
749
+
// Properties: see details [here](https://microsoft.github.io/debug-adapter-protocol/specification#Base_Protocol_Variable).
0 commit comments