@codingame/monaco-vscode-api 20.1.1 → 20.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +8 -8
- package/services.js +3 -3
- package/vscode/src/vs/base/browser/browser.d.ts +2 -0
- package/vscode/src/vs/base/browser/canIUse.d.ts +3 -0
- package/vscode/src/vs/base/browser/contextmenu.d.ts +14 -0
- package/vscode/src/vs/base/browser/cssValue.d.ts +8 -0
- package/vscode/src/vs/base/browser/dnd.d.ts +21 -0
- package/vscode/src/vs/base/browser/dom.d.ts +178 -0
- package/vscode/src/vs/base/browser/domSanitize.d.ts +26 -0
- package/vscode/src/vs/base/browser/domStylesheets.d.ts +3 -0
- package/vscode/src/vs/base/browser/dompurify/dompurify.d.ts +19 -0
- package/vscode/src/vs/base/browser/fonts.d.ts +8 -0
- package/vscode/src/vs/base/browser/iframe.d.ts +10 -0
- package/vscode/src/vs/base/browser/keyboardEvent.d.ts +3 -0
- package/vscode/src/vs/base/browser/markdownRenderer.d.ts +18 -0
- package/vscode/src/vs/base/browser/performance.d.ts +22 -0
- package/vscode/src/vs/base/browser/pixelRatio.d.ts +7 -0
- package/vscode/src/vs/base/browser/ui/actionbar/actionbar.css +29 -2
- package/vscode/src/vs/base/browser/ui/actionbar/actionbar.d.ts +5 -0
- package/vscode/src/vs/base/browser/ui/aria/aria.css +6 -1
- package/vscode/src/vs/base/browser/ui/aria/aria.d.ts +6 -0
- package/vscode/src/vs/base/browser/ui/button/button.css +36 -1
- package/vscode/src/vs/base/browser/ui/button/button.d.ts +9 -0
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon-modifiers.css +11 -0
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.css +8 -0
- package/vscode/src/vs/base/browser/ui/contextview/contextview.css +6 -0
- package/vscode/src/vs/base/browser/ui/contextview/contextview.d.ts +14 -0
- package/vscode/src/vs/base/browser/ui/countBadge/countBadge.css +6 -0
- package/vscode/src/vs/base/browser/ui/dnd/dnd.css +12 -0
- package/vscode/src/vs/base/browser/ui/dropdown/dropdown.css +11 -0
- package/vscode/src/vs/base/browser/ui/findinput/findInput.css +20 -0
- package/vscode/src/vs/base/browser/ui/highlightedlabel/highlightedLabel.d.ts +27 -0
- package/vscode/src/vs/base/browser/ui/hover/hover.d.ts +258 -0
- package/vscode/src/vs/base/browser/ui/hover/hoverDelegate.d.ts +37 -0
- package/vscode/src/vs/base/browser/ui/hover/hoverDelegate2.d.ts +10 -0
- package/vscode/src/vs/base/browser/ui/hover/hoverWidget.css +54 -0
- package/vscode/src/vs/base/browser/ui/iconLabel/iconlabel.css +34 -6
- package/vscode/src/vs/base/browser/ui/inputbox/inputBox.css +27 -2
- package/vscode/src/vs/base/browser/ui/keybindingLabel/keybindingLabel.css +10 -0
- package/vscode/src/vs/base/browser/ui/keybindingLabel/keybindingLabel.d.ts +3 -0
- package/vscode/src/vs/base/browser/ui/list/list.css +21 -0
- package/vscode/src/vs/base/browser/ui/list/list.d.ts +9 -0
- package/vscode/src/vs/base/browser/ui/list/listView.d.ts +17 -3
- package/vscode/src/vs/base/browser/ui/list/listWidget.d.ts +26 -0
- package/vscode/src/vs/base/browser/ui/list/rangeMap.d.ts +29 -0
- package/vscode/src/vs/base/browser/ui/list/rowCache.d.ts +12 -0
- package/vscode/src/vs/base/browser/ui/mouseCursor/mouseCursor.css +5 -0
- package/vscode/src/vs/base/browser/ui/progressbar/progressbar.css +29 -1
- package/vscode/src/vs/base/browser/ui/progressbar/progressbar.d.ts +33 -0
- package/vscode/src/vs/base/browser/ui/sash/sash.css +31 -0
- package/vscode/src/vs/base/browser/ui/sash/sash.d.ts +125 -0
- package/vscode/src/vs/base/browser/ui/scrollbar/abstractScrollbar.d.ts +6 -0
- package/vscode/src/vs/base/browser/ui/scrollbar/media/scrollbars.css +16 -0
- package/vscode/src/vs/base/browser/ui/scrollbar/scrollableElement.d.ts +22 -0
- package/vscode/src/vs/base/browser/ui/scrollbar/scrollableElementOptions.d.ts +98 -0
- package/vscode/src/vs/base/browser/ui/scrollbar/scrollbarArrow.d.ts +3 -0
- package/vscode/src/vs/base/browser/ui/scrollbar/scrollbarState.d.ts +43 -0
- package/vscode/src/vs/base/browser/ui/selectBox/selectBox.css +11 -0
- package/vscode/src/vs/base/browser/ui/selectBox/selectBoxCustom.css +29 -1
- package/vscode/src/vs/base/browser/ui/severityIcon/media/severityIcon.css +7 -0
- package/vscode/src/vs/base/browser/ui/splitview/splitview.css +16 -0
- package/vscode/src/vs/base/browser/ui/splitview/splitview.d.ts +289 -0
- package/vscode/src/vs/base/browser/ui/table/table.css +12 -0
- package/vscode/src/vs/base/browser/ui/toggle/toggle.css +14 -0
- package/vscode/src/vs/base/browser/ui/toolbar/toolbar.css +6 -0
- package/vscode/src/vs/base/browser/ui/toolbar/toolbar.d.ts +12 -0
- package/vscode/src/vs/base/browser/ui/tree/abstractTree.d.ts +12 -0
- package/vscode/src/vs/base/browser/ui/tree/asyncDataTree.d.ts +19 -0
- package/vscode/src/vs/base/browser/ui/tree/indexTreeModel.d.ts +18 -0
- package/vscode/src/vs/base/browser/ui/tree/media/tree.css +38 -3
- package/vscode/src/vs/base/browser/ui/tree/objectTree.d.ts +12 -0
- package/vscode/src/vs/base/browser/ui/tree/tree.d.ts +43 -0
- package/vscode/src/vs/base/common/actions.d.ts +3 -0
- package/vscode/src/vs/base/common/arrays.d.ts +193 -1
- package/vscode/src/vs/base/common/arraysFind.d.ts +46 -0
- package/vscode/src/vs/base/common/assert.d.ts +28 -0
- package/vscode/src/vs/base/common/async.d.ts +361 -0
- package/vscode/src/vs/base/common/buffer.d.ts +31 -0
- package/vscode/src/vs/base/common/cache.d.ts +11 -0
- package/vscode/src/vs/base/common/cancellation.d.ts +11 -0
- package/vscode/src/vs/base/common/charCode.d.ts +319 -186
- package/vscode/src/vs/base/common/codicons.d.ts +14 -0
- package/vscode/src/vs/base/common/codiconsUtil.d.ts +3 -0
- package/vscode/src/vs/base/common/collections.d.ts +19 -0
- package/vscode/src/vs/base/common/color.d.ts +115 -0
- package/vscode/src/vs/base/common/comparers.d.ts +10 -0
- package/vscode/src/vs/base/common/dataTransfer.d.ts +38 -0
- package/vscode/src/vs/base/common/date.d.ts +15 -0
- package/vscode/src/vs/base/common/diff/diff.d.ts +90 -0
- package/vscode/src/vs/base/common/diff/diffChange.d.ts +29 -0
- package/vscode/src/vs/base/common/equals.d.ts +26 -0
- package/vscode/src/vs/base/common/errorMessage.d.ts +6 -0
- package/vscode/src/vs/base/common/errors.d.ts +26 -0
- package/vscode/src/vs/base/common/event.d.ts +356 -0
- package/vscode/src/vs/base/common/extpath.d.ts +34 -0
- package/vscode/src/vs/base/common/filters.d.ts +22 -0
- package/vscode/src/vs/base/common/functional.d.ts +3 -0
- package/vscode/src/vs/base/common/glob.d.ts +39 -0
- package/vscode/src/vs/base/common/hash.d.ts +12 -0
- package/vscode/src/vs/base/common/history.d.ts +7 -0
- package/vscode/src/vs/base/common/hotReload.d.ts +6 -0
- package/vscode/src/vs/base/common/htmlContent.d.ts +3 -0
- package/vscode/src/vs/base/common/iconLabels.d.ts +9 -0
- package/vscode/src/vs/base/common/ime.d.ts +6 -0
- package/vscode/src/vs/base/common/iterator.d.ts +7 -0
- package/vscode/src/vs/base/common/json.d.ts +98 -0
- package/vscode/src/vs/base/common/jsonSchema.d.ts +5 -0
- package/vscode/src/vs/base/common/keyCodes.d.ts +95 -18
- package/vscode/src/vs/base/common/keybindingLabels.d.ts +13 -0
- package/vscode/src/vs/base/common/keybindings.d.ts +54 -0
- package/vscode/src/vs/base/common/labels.d.ts +41 -0
- package/vscode/src/vs/base/common/lazy.d.ts +12 -0
- package/vscode/src/vs/base/common/lifecycle.d.ts +126 -0
- package/vscode/src/vs/base/common/map.d.ts +33 -0
- package/vscode/src/vs/base/common/marked/marked.d.ts +137 -0
- package/vscode/src/vs/base/common/naturalLanguage/korean.d.ts +8 -0
- package/vscode/src/vs/base/common/network.d.ts +85 -0
- package/vscode/src/vs/base/common/numbers.d.ts +45 -0
- package/vscode/src/vs/base/common/oauth.d.ts +369 -0
- package/vscode/src/vs/base/common/objects.d.ts +19 -0
- package/vscode/src/vs/base/common/observableInternal/base.d.ts +128 -0
- package/vscode/src/vs/base/common/observableInternal/changeTracker.d.ts +11 -0
- package/vscode/src/vs/base/common/observableInternal/debugName.d.ts +16 -0
- package/vscode/src/vs/base/common/observableInternal/experimental/reducer.d.ts +21 -0
- package/vscode/src/vs/base/common/observableInternal/experimental/utils.d.ts +11 -0
- package/vscode/src/vs/base/common/observableInternal/observables/baseObservable.d.ts +15 -0
- package/vscode/src/vs/base/common/observableInternal/observables/constObservable.d.ts +3 -0
- package/vscode/src/vs/base/common/observableInternal/observables/derived.d.ts +25 -0
- package/vscode/src/vs/base/common/observableInternal/observables/derivedImpl.d.ts +15 -0
- package/vscode/src/vs/base/common/observableInternal/observables/lazyObservableValue.d.ts +3 -0
- package/vscode/src/vs/base/common/observableInternal/observables/observableSignal.d.ts +5 -0
- package/vscode/src/vs/base/common/observableInternal/observables/observableValue.d.ts +10 -0
- package/vscode/src/vs/base/common/observableInternal/reactions/autorun.d.ts +27 -0
- package/vscode/src/vs/base/common/observableInternal/reactions/autorunImpl.d.ts +7 -0
- package/vscode/src/vs/base/common/observableInternal/transaction.d.ts +9 -0
- package/vscode/src/vs/base/common/observableInternal/utils/promise.d.ts +47 -1
- package/vscode/src/vs/base/common/observableInternal/utils/utils.d.ts +15 -0
- package/vscode/src/vs/base/common/observableInternal/utils/utilsCancellation.d.ts +3 -0
- package/vscode/src/vs/base/common/performance.d.ts +3 -0
- package/vscode/src/vs/base/common/platform.d.ts +37 -0
- package/vscode/src/vs/base/common/prefixTree.d.ts +23 -0
- package/vscode/src/vs/base/common/process.d.ts +23 -0
- package/vscode/src/vs/base/common/range.d.ts +4 -0
- package/vscode/src/vs/base/common/resources.d.ts +115 -0
- package/vscode/src/vs/base/common/scrollable.d.ts +17 -0
- package/vscode/src/vs/base/common/severity.d.ts +4 -0
- package/vscode/src/vs/base/common/skipList.d.ts +4 -0
- package/vscode/src/vs/base/common/sseParser.d.ts +51 -0
- package/vscode/src/vs/base/common/stream.d.ts +148 -0
- package/vscode/src/vs/base/common/strings.d.ts +134 -0
- package/vscode/src/vs/base/common/symbols.d.ts +3 -0
- package/vscode/src/vs/base/common/ternarySearchTree.d.ts +6 -0
- package/vscode/src/vs/base/common/types.d.ts +135 -0
- package/vscode/src/vs/base/common/uint.d.ts +24 -3
- package/vscode/src/vs/base/common/uri.d.ts +131 -0
- package/vscode/src/vs/base/common/worker/webWorker.d.ts +6 -0
- package/vscode/src/vs/base/parts/sandbox/common/electronTypes.d.ts +179 -0
- package/vscode/src/vs/base/parts/sandbox/common/sandboxTypes.d.ts +39 -0
- package/vscode/src/vs/base/parts/storage/common/storage.d.ts +11 -0
- package/vscode/src/vs/editor/browser/config/editorConfiguration.d.ts +20 -0
- package/vscode/src/vs/editor/browser/config/fontMeasurements.d.ts +15 -0
- package/vscode/src/vs/editor/browser/config/migrateOptions.d.ts +3 -0
- package/vscode/src/vs/editor/browser/config/tabFocus.d.ts +6 -0
- package/vscode/src/vs/editor/browser/controller/dragScrolling.d.ts +9 -0
- package/vscode/src/vs/editor/browser/controller/editContext/clipboardUtils.d.ts +5 -0
- package/vscode/src/vs/editor/browser/controller/editContext/native/editContextFactory.d.ts +3 -0
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.css +11 -0
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderUtils.d.ts +18 -0
- package/vscode/src/vs/editor/browser/controller/editContext/screenReaderUtils.d.ts +5 -0
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.css +19 -0
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.d.ts +7 -0
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContextInput.d.ts +8 -0
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContextState.d.ts +13 -1
- package/vscode/src/vs/editor/browser/controller/mouseHandler.d.ts +9 -0
- package/vscode/src/vs/editor/browser/controller/mouseTarget.d.ts +6 -0
- package/vscode/src/vs/editor/browser/controller/pointerHandler.d.ts +3 -0
- package/vscode/src/vs/editor/browser/coreCommands.d.ts +24 -0
- package/vscode/src/vs/editor/browser/editorBrowser.d.ts +439 -0
- package/vscode/src/vs/editor/browser/editorDom.d.ts +39 -0
- package/vscode/src/vs/editor/browser/editorExtensions.d.ts +51 -0
- package/vscode/src/vs/editor/browser/gpu/atlas/atlas.d.ts +65 -0
- package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlas.d.ts +23 -1
- package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlasPage.d.ts +4 -0
- package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlasShelfAllocator.d.ts +5 -0
- package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlasSlabAllocator.d.ts +10 -0
- package/vscode/src/vs/editor/browser/gpu/bufferDirtyTracker.d.ts +20 -0
- package/vscode/src/vs/editor/browser/gpu/contentSegmenter.d.ts +6 -0
- package/vscode/src/vs/editor/browser/gpu/css/decorationCssRuleExtractor.d.ts +3 -0
- package/vscode/src/vs/editor/browser/gpu/css/decorationStyleCache.d.ts +12 -0
- package/vscode/src/vs/editor/browser/gpu/css/media/decorationCssRuleExtractor.css +5 -0
- package/vscode/src/vs/editor/browser/gpu/gpu.d.ts +3 -0
- package/vscode/src/vs/editor/browser/gpu/objectCollectionBuffer.d.ts +33 -0
- package/vscode/src/vs/editor/browser/gpu/raster/glyphRasterizer.d.ts +4 -0
- package/vscode/src/vs/editor/browser/gpu/raster/raster.d.ts +47 -0
- package/vscode/src/vs/editor/browser/gpu/renderStrategy/fullFileRenderStrategy.d.ts +20 -0
- package/vscode/src/vs/editor/browser/gpu/renderStrategy/viewportRenderStrategy.d.ts +10 -0
- package/vscode/src/vs/editor/browser/gpu/taskQueue.d.ts +33 -0
- package/vscode/src/vs/editor/browser/gpu/viewGpuContext.d.ts +22 -0
- package/vscode/src/vs/editor/browser/observableCodeEditor.d.ts +6 -0
- package/vscode/src/vs/editor/browser/services/codeEditorService.service.d.ts +3 -0
- package/vscode/src/vs/editor/browser/services/hoverService/hover.css +32 -0
- package/vscode/src/vs/editor/browser/services/hoverService/hoverWidget.d.ts +4 -0
- package/vscode/src/vs/editor/browser/services/inlineCompletionsService.service.d.ts +16 -0
- package/vscode/src/vs/editor/browser/view/renderingContext.d.ts +17 -1
- package/vscode/src/vs/editor/browser/view/viewController.d.ts +3 -0
- package/vscode/src/vs/editor/browser/view/viewLayer.d.ts +19 -0
- package/vscode/src/vs/editor/browser/viewParts/blockDecorations/blockDecorations.css +6 -0
- package/vscode/src/vs/editor/browser/viewParts/contentWidgets/contentWidgets.d.ts +5 -0
- package/vscode/src/vs/editor/browser/viewParts/currentLineHighlight/currentLineHighlight.css +7 -0
- package/vscode/src/vs/editor/browser/viewParts/currentLineHighlight/currentLineHighlight.d.ts +9 -0
- package/vscode/src/vs/editor/browser/viewParts/decorations/decorations.css +9 -0
- package/vscode/src/vs/editor/browser/viewParts/editorScrollbar/editorScrollbar.d.ts +4 -0
- package/vscode/src/vs/editor/browser/viewParts/glyphMargin/glyphMargin.css +16 -0
- package/vscode/src/vs/editor/browser/viewParts/glyphMargin/glyphMargin.d.ts +20 -0
- package/vscode/src/vs/editor/browser/viewParts/gpuMark/gpuMark.css +6 -0
- package/vscode/src/vs/editor/browser/viewParts/gpuMark/gpuMark.d.ts +3 -0
- package/vscode/src/vs/editor/browser/viewParts/indentGuides/indentGuides.css +5 -0
- package/vscode/src/vs/editor/browser/viewParts/indentGuides/indentGuides.d.ts +4 -0
- package/vscode/src/vs/editor/browser/viewParts/lineNumbers/lineNumbers.css +9 -0
- package/vscode/src/vs/editor/browser/viewParts/lineNumbers/lineNumbers.d.ts +3 -0
- package/vscode/src/vs/editor/browser/viewParts/linesDecorations/linesDecorations.css +9 -0
- package/vscode/src/vs/editor/browser/viewParts/margin/margin.css +5 -0
- package/vscode/src/vs/editor/browser/viewParts/margin/margin.d.ts +5 -0
- package/vscode/src/vs/editor/browser/viewParts/marginDecorations/marginDecorations.css +9 -0
- package/vscode/src/vs/editor/browser/viewParts/minimap/minimap.css +10 -0
- package/vscode/src/vs/editor/browser/viewParts/minimap/minimap.d.ts +31 -0
- package/vscode/src/vs/editor/browser/viewParts/minimap/minimapCharRendererFactory.d.ts +16 -0
- package/vscode/src/vs/editor/browser/viewParts/minimap/minimapCharSheet.d.ts +3 -3
- package/vscode/src/vs/editor/browser/viewParts/minimap/minimapPreBaked.d.ts +5 -0
- package/vscode/src/vs/editor/browser/viewParts/overlayWidgets/overlayWidgets.css +4 -0
- package/vscode/src/vs/editor/browser/viewParts/overviewRuler/overviewRuler.d.ts +4 -0
- package/vscode/src/vs/editor/browser/viewParts/rulers/rulers.css +5 -0
- package/vscode/src/vs/editor/browser/viewParts/rulers/rulers.d.ts +4 -0
- package/vscode/src/vs/editor/browser/viewParts/rulersGpu/rulersGpu.d.ts +4 -0
- package/vscode/src/vs/editor/browser/viewParts/scrollDecoration/scrollDecoration.css +5 -0
- package/vscode/src/vs/editor/browser/viewParts/selections/selections.css +14 -0
- package/vscode/src/vs/editor/browser/viewParts/selections/selections.d.ts +3 -0
- package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursor.d.ts +4 -0
- package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursors.css +19 -0
- package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursors.d.ts +4 -0
- package/vscode/src/vs/editor/browser/viewParts/viewLines/rangeUtil.d.ts +5 -0
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLines.css +34 -0
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLines.d.ts +19 -0
- package/vscode/src/vs/editor/browser/viewParts/viewLinesGpu/viewLinesGpu.d.ts +3 -0
- package/vscode/src/vs/editor/browser/viewParts/viewZones/viewZones.d.ts +5 -0
- package/vscode/src/vs/editor/browser/viewParts/whitespace/whitespace.css +5 -0
- package/vscode/src/vs/editor/browser/viewParts/whitespace/whitespace.d.ts +4 -0
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorContributions.d.ts +12 -0
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.d.ts +32 -0
- package/vscode/src/vs/editor/browser/widget/codeEditor/editor.css +27 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/commands.d.ts +4 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.css +20 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.d.ts +6 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorSash.d.ts +1 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/diffEditorViewZones.d.ts +7 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorWidget.d.ts +10 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/gutterFeature.d.ts +3 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/hideUnchangedRegionsFeature.d.ts +3 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/revertButtonsFeature.d.ts +6 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/style.css +92 -1
- package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/markdownRenderer.d.ts +4 -0
- package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/renderedMarkdown.css +6 -0
- package/vscode/src/vs/editor/common/commands/surroundSelectionCommand.d.ts +3 -0
- package/vscode/src/vs/editor/common/commands/trimTrailingWhitespaceCommand.d.ts +3 -0
- package/vscode/src/vs/editor/common/config/editorConfiguration.d.ts +41 -0
- package/vscode/src/vs/editor/common/config/editorOptions.d.ts +862 -0
- package/vscode/src/vs/editor/common/config/fontInfo.d.ts +34 -0
- package/vscode/src/vs/editor/common/coordinatesConverter.d.ts +7 -0
- package/vscode/src/vs/editor/common/core/characterClassifier.d.ts +9 -0
- package/vscode/src/vs/editor/common/core/cursorColumns.d.ts +44 -0
- package/vscode/src/vs/editor/common/core/editOperation.d.ts +14 -0
- package/vscode/src/vs/editor/common/core/editorColorRegistry.d.ts +3 -0
- package/vscode/src/vs/editor/common/core/edits/edit.d.ts +55 -1
- package/vscode/src/vs/editor/common/core/edits/lengthEdit.d.ts +6 -0
- package/vscode/src/vs/editor/common/core/edits/lineEdit.d.ts +9 -1
- package/vscode/src/vs/editor/common/core/edits/stringEdit.d.ts +37 -0
- package/vscode/src/vs/editor/common/core/edits/textEdit.d.ts +3 -0
- package/vscode/src/vs/editor/common/core/misc/rgba.d.ts +16 -0
- package/vscode/src/vs/editor/common/core/position.d.ts +67 -0
- package/vscode/src/vs/editor/common/core/range.d.ts +140 -0
- package/vscode/src/vs/editor/common/core/ranges/columnRange.d.ts +8 -1
- package/vscode/src/vs/editor/common/core/ranges/lineRange.d.ts +57 -1
- package/vscode/src/vs/editor/common/core/ranges/offsetRange.d.ts +30 -0
- package/vscode/src/vs/editor/common/core/ranges/rangeSingleLine.d.ts +7 -1
- package/vscode/src/vs/editor/common/core/selection.d.ts +83 -0
- package/vscode/src/vs/editor/common/core/stringBuilder.d.ts +6 -0
- package/vscode/src/vs/editor/common/core/text/positionToOffsetImpl.d.ts +1 -0
- package/vscode/src/vs/editor/common/core/text/textLength.d.ts +3 -0
- package/vscode/src/vs/editor/common/core/wordHelper.d.ts +12 -0
- package/vscode/src/vs/editor/common/cursor/cursorAtomicMoveOperations.d.ts +15 -0
- package/vscode/src/vs/editor/common/cursor/cursorCollection.d.ts +7 -0
- package/vscode/src/vs/editor/common/cursor/cursorMoveCommands.d.ts +15 -0
- package/vscode/src/vs/editor/common/cursor/cursorMoveOperations.d.ts +7 -0
- package/vscode/src/vs/editor/common/cursor/cursorTypeEditOperations.d.ts +14 -0
- package/vscode/src/vs/editor/common/cursor/cursorTypeOperations.d.ts +3 -0
- package/vscode/src/vs/editor/common/cursor/oneCursor.d.ts +3 -0
- package/vscode/src/vs/editor/common/cursorCommon.d.ts +25 -0
- package/vscode/src/vs/editor/common/cursorEvents.d.ts +63 -0
- package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/diffAlgorithm.d.ts +23 -1
- package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/dynamicProgrammingDiffing.d.ts +4 -0
- package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/myersDiffAlgorithm.d.ts +3 -0
- package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/linesSliceCharSequence.d.ts +4 -0
- package/vscode/src/vs/editor/common/diff/legacyLinesDiffComputer.d.ts +16 -0
- package/vscode/src/vs/editor/common/diff/linesDiffComputer.d.ts +24 -1
- package/vscode/src/vs/editor/common/diff/rangeMapping.d.ts +41 -0
- package/vscode/src/vs/editor/common/editorCommon.d.ts +218 -0
- package/vscode/src/vs/editor/common/editorContextKeys.d.ts +14 -0
- package/vscode/src/vs/editor/common/editorFeatures.d.ts +7 -0
- package/vscode/src/vs/editor/common/encodedTokenAttributes.d.ts +38 -0
- package/vscode/src/vs/editor/common/inputMode.d.ts +3 -0
- package/vscode/src/vs/editor/common/languageSelector.d.ts +6 -0
- package/vscode/src/vs/editor/common/languages/autoIndent.d.ts +16 -0
- package/vscode/src/vs/editor/common/languages/defaultDocumentColorsComputer.d.ts +3 -0
- package/vscode/src/vs/editor/common/languages/language.d.ts +3 -0
- package/vscode/src/vs/editor/common/languages/language.service.d.ts +77 -0
- package/vscode/src/vs/editor/common/languages/languageConfiguration.d.ts +195 -0
- package/vscode/src/vs/editor/common/languages/languageConfigurationRegistry.d.ts +9 -0
- package/vscode/src/vs/editor/common/languages/languageConfigurationRegistry.service.d.ts +3 -0
- package/vscode/src/vs/editor/common/languages/linkComputer.d.ts +5 -0
- package/vscode/src/vs/editor/common/languages/supports/electricCharacter.d.ts +4 -0
- package/vscode/src/vs/editor/common/languages/supports/indentationLineProcessor.d.ts +27 -0
- package/vscode/src/vs/editor/common/languages/supports/languageBracketsConfiguration.d.ts +22 -1
- package/vscode/src/vs/editor/common/languages/supports/richEditBrackets.d.ts +80 -0
- package/vscode/src/vs/editor/common/languages/supports/tokenization.d.ts +12 -0
- package/vscode/src/vs/editor/common/languages.d.ts +955 -1
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsImpl.d.ts +4 -0
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/ast.d.ts +55 -0
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/beforeEditPositionMapper.d.ts +10 -0
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/bracketPairsTree.d.ts +3 -0
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/brackets.d.ts +3 -0
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/concat23Trees.d.ts +6 -0
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/length.d.ts +16 -0
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/nodeReader.d.ts +8 -0
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/parser.d.ts +3 -0
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/smallImmutableSet.d.ts +7 -0
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/tokenizer.d.ts +23 -1
- package/vscode/src/vs/editor/common/model/decorationProvider.d.ts +13 -0
- package/vscode/src/vs/editor/common/model/fixedArray.d.ts +4 -0
- package/vscode/src/vs/editor/common/model/indentationGuesser.d.ts +9 -0
- package/vscode/src/vs/editor/common/model/intervalTree.d.ts +13 -0
- package/vscode/src/vs/editor/common/model/mirrorTextModel.d.ts +18 -0
- package/vscode/src/vs/editor/common/model/pieceTreeTextBuffer/pieceTreeBase.d.ts +29 -0
- package/vscode/src/vs/editor/common/model/pieceTreeTextBuffer/pieceTreeTextBuffer.d.ts +7 -0
- package/vscode/src/vs/editor/common/model/prefixSumComputer.d.ts +34 -0
- package/vscode/src/vs/editor/common/model/textModel.d.ts +17 -0
- package/vscode/src/vs/editor/common/model/textModelSearch.d.ts +4 -0
- package/vscode/src/vs/editor/common/model/textModelTokens.d.ts +19 -0
- package/vscode/src/vs/editor/common/model/tokens/abstractSyntaxTokenBackend.d.ts +8 -0
- package/vscode/src/vs/editor/common/model/tokens/tokenizationTextModelPart.d.ts +3 -0
- package/vscode/src/vs/editor/common/model/tokens/tokenizerSyntaxTokenBackend.d.ts +1 -0
- package/vscode/src/vs/editor/common/model/tokens/treeSitter/tokenStore.d.ts +22 -0
- package/vscode/src/vs/editor/common/model/tokens/treeSitter/treeSitterTokenizationImpl.d.ts +10 -0
- package/vscode/src/vs/editor/common/model/tokens/treeSitter/treeSitterTree.d.ts +4 -1
- package/vscode/src/vs/editor/common/model/utils.d.ts +5 -0
- package/vscode/src/vs/editor/common/model.d.ts +440 -0
- package/vscode/src/vs/editor/common/modelLineProjectionData.d.ts +52 -1
- package/vscode/src/vs/editor/common/services/editorWebWorker.d.ts +19 -0
- package/vscode/src/vs/editor/common/services/findSectionHeaders.d.ts +19 -0
- package/vscode/src/vs/editor/common/services/languagesAssociations.d.ts +23 -0
- package/vscode/src/vs/editor/common/services/modelService.d.ts +6 -0
- package/vscode/src/vs/editor/common/services/resolverService.service.d.ts +10 -0
- package/vscode/src/vs/editor/common/services/textModelSync/textModelSync.impl.d.ts +3 -0
- package/vscode/src/vs/editor/common/services/textResourceConfiguration.d.ts +11 -0
- package/vscode/src/vs/editor/common/services/textResourceConfiguration.service.d.ts +35 -0
- package/vscode/src/vs/editor/common/services/treeSitter/treeSitterLibraryService.service.d.ts +10 -0
- package/vscode/src/vs/editor/common/standalone/standaloneEnums.d.ts +377 -18
- package/vscode/src/vs/editor/common/textModelBracketPairs.d.ts +56 -3
- package/vscode/src/vs/editor/common/textModelEditSource.d.ts +4 -0
- package/vscode/src/vs/editor/common/textModelEvents.d.ts +210 -0
- package/vscode/src/vs/editor/common/textModelGuides.d.ts +28 -1
- package/vscode/src/vs/editor/common/tokenizationTextModelPart.d.ts +53 -0
- package/vscode/src/vs/editor/common/tokens/contiguousMultilineTokens.d.ts +24 -0
- package/vscode/src/vs/editor/common/tokens/contiguousTokensStore.d.ts +3 -0
- package/vscode/src/vs/editor/common/tokens/lineTokens.d.ts +20 -0
- package/vscode/src/vs/editor/common/tokens/sparseMultilineTokens.d.ts +9 -0
- package/vscode/src/vs/editor/common/tokens/sparseTokensStore.d.ts +3 -0
- package/vscode/src/vs/editor/common/tokens/tokenWithTextArray.d.ts +11 -0
- package/vscode/src/vs/editor/common/viewEvents.d.ts +85 -2
- package/vscode/src/vs/editor/common/viewLayout/lineDecorations.d.ts +3 -0
- package/vscode/src/vs/editor/common/viewLayout/lineHeights.d.ts +26 -0
- package/vscode/src/vs/editor/common/viewLayout/linePart.d.ts +8 -1
- package/vscode/src/vs/editor/common/viewLayout/linesLayout.d.ts +130 -0
- package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.d.ts +10 -0
- package/vscode/src/vs/editor/common/viewLayout/viewLinesViewportData.d.ts +21 -0
- package/vscode/src/vs/editor/common/viewModel/modelLineProjection.d.ts +3 -0
- package/vscode/src/vs/editor/common/viewModel/overviewZoneManager.d.ts +6 -0
- package/vscode/src/vs/editor/common/viewModel/viewModelDecorations.d.ts +12 -0
- package/vscode/src/vs/editor/common/viewModel/viewModelImpl.d.ts +15 -0
- package/vscode/src/vs/editor/common/viewModel/viewModelLines.d.ts +10 -0
- package/vscode/src/vs/editor/common/viewModel.d.ts +104 -1
- package/vscode/src/vs/editor/contrib/anchorSelect/browser/anchorSelect.css +5 -0
- package/vscode/src/vs/editor/contrib/bracketMatching/browser/bracketMatching.css +5 -0
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.css +16 -0
- package/vscode/src/vs/editor/contrib/codelens/browser/codelensWidget.css +15 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPicker.css +40 -0
- package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.d.ts +4 -0
- package/vscode/src/vs/editor/contrib/comment/browser/lineCommentCommand.d.ts +26 -0
- package/vscode/src/vs/editor/contrib/dnd/browser/dnd.css +9 -3
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.d.ts +12 -0
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController.d.ts +5 -0
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/edit.d.ts +4 -0
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.css +8 -0
- package/vscode/src/vs/editor/contrib/editorState/browser/editorState.d.ts +8 -0
- package/vscode/src/vs/editor/contrib/find/browser/findDecorations.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/find/browser/findOptionsWidget.css +5 -0
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.css +62 -1
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.d.ts +4 -0
- package/vscode/src/vs/editor/contrib/find/browser/replacePattern.d.ts +18 -0
- package/vscode/src/vs/editor/contrib/folding/browser/folding.css +10 -1
- package/vscode/src/vs/editor/contrib/folding/browser/folding.d.ts +6 -0
- package/vscode/src/vs/editor/contrib/folding/browser/foldingModel.d.ts +67 -0
- package/vscode/src/vs/editor/contrib/folding/browser/foldingRanges.d.ts +13 -0
- package/vscode/src/vs/editor/contrib/gotoError/browser/media/gotoErrorWidget.css +20 -0
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/clickLinkGesture.d.ts +9 -0
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.css +5 -0
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.css +22 -0
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.d.ts +3 -0
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverWidgetWrapper.d.ts +3 -0
- package/vscode/src/vs/editor/contrib/hover/browser/hover.css +19 -0
- package/vscode/src/vs/editor/contrib/hover/browser/hoverOperation.d.ts +16 -0
- package/vscode/src/vs/editor/contrib/hover/browser/hoverTypes.d.ts +54 -0
- package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.css +6 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.d.ts +3 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.css +12 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/computeGhostText.d.ts +12 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/ghostText.d.ts +11 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/graph.d.ts +3 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.d.ts +3 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.d.ts +12 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.d.ts +13 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/typingSpeed.d.ts +13 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/structuredLogger.d.ts +3 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.css +16 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.d.ts +4 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/view.css +58 -7
- package/vscode/src/vs/editor/contrib/inlineProgress/browser/inlineProgress.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineProgress/browser/inlineProgressWidget.css +9 -0
- package/vscode/src/vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLineCommand.d.ts +4 -0
- package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.d.ts +3 -0
- package/vscode/src/vs/editor/contrib/linesOperations/browser/moveLinesCommand.d.ts +9 -0
- package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.css +7 -0
- package/vscode/src/vs/editor/contrib/links/browser/links.css +5 -0
- package/vscode/src/vs/editor/contrib/message/browser/messageController.css +18 -0
- package/vscode/src/vs/editor/contrib/middleScroll/browser/middleScroll.css +7 -0
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.css +29 -0
- package/vscode/src/vs/editor/contrib/peekView/browser/media/peekViewWidget.css +18 -0
- package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.css +6 -0
- package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderTextContribution.d.ts +3 -0
- package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.css +16 -2
- package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.d.ts +27 -0
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetParser.d.ts +4 -0
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetSession.css +6 -0
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetSession.d.ts +4 -0
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScroll.css +15 -0
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollElement.d.ts +22 -1
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollModelProvider.d.ts +5 -0
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollProvider.d.ts +42 -0
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.d.ts +19 -0
- package/vscode/src/vs/editor/contrib/suggest/browser/completionModel.d.ts +3 -0
- package/vscode/src/vs/editor/contrib/suggest/browser/media/suggest.css +118 -0
- package/vscode/src/vs/editor/contrib/suggest/browser/suggest.d.ts +7 -0
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestModel.d.ts +4 -0
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.d.ts +8 -0
- package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.css +5 -0
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/bannerController.css +19 -0
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.css +5 -0
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.css +8 -0
- package/vscode/src/vs/editor/contrib/zoneWidget/browser/zoneWidget.css +6 -0
- package/vscode/src/vs/editor/contrib/zoneWidget/browser/zoneWidget.d.ts +1 -0
- package/vscode/src/vs/editor/editor.worker.start.d.ts +5 -0
- package/vscode/src/vs/editor/standalone/browser/iPadShowKeyboard/iPadShowKeyboard.css +6 -0
- package/vscode/src/vs/editor/standalone/browser/quickInput/standaloneQuickInput.css +14 -0
- package/vscode/src/vs/editor/standalone/browser/standaloneCodeEditor.d.ts +73 -0
- package/vscode/src/vs/editor/standalone/browser/standaloneServices.d.ts +10 -0
- package/vscode/src/vs/editor/standalone/browser/standaloneTreeSitterLibraryService.d.ts +10 -0
- package/vscode/src/vs/nls.d.ts +96 -0
- package/vscode/src/vs/platform/accessibility/browser/accessibleView.d.ts +31 -0
- package/vscode/src/vs/platform/accessibility/browser/accessibleView.service.d.ts +4 -0
- package/vscode/src/vs/platform/accessibility/browser/accessibleViewRegistry.d.ts +3 -0
- package/vscode/src/vs/platform/accessibility/common/accessibility.d.ts +3 -0
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.d.ts +16 -0
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.service.d.ts +7 -0
- package/vscode/src/vs/platform/action/common/action.d.ts +32 -0
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css +36 -0
- package/vscode/src/vs/platform/actions/browser/floatingMenu.d.ts +4 -0
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.css +14 -0
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.d.ts +3 -0
- package/vscode/src/vs/platform/actions/browser/toolbar.d.ts +67 -0
- package/vscode/src/vs/platform/actions/common/actions.d.ts +40 -0
- package/vscode/src/vs/platform/actions/common/actions.service.d.ts +20 -0
- package/vscode/src/vs/platform/clipboard/common/clipboardService.service.d.ts +33 -0
- package/vscode/src/vs/platform/commands/common/commands.d.ts +7 -0
- package/vscode/src/vs/platform/configuration/common/configuration.d.ts +9 -0
- package/vscode/src/vs/platform/configuration/common/configuration.service.d.ts +26 -0
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.d.ts +126 -0
- package/vscode/src/vs/platform/contextkey/common/contextkey.d.ts +30 -0
- package/vscode/src/vs/platform/contextkey/common/scanner.d.ts +21 -1
- package/vscode/src/vs/platform/contextview/browser/contextView.d.ts +18 -0
- package/vscode/src/vs/platform/dialogs/common/dialogs.service.d.ts +87 -0
- package/vscode/src/vs/platform/dnd/browser/dnd.d.ts +22 -0
- package/vscode/src/vs/platform/editor/common/editor.d.ts +231 -0
- package/vscode/src/vs/platform/environment/common/argv.d.ts +3 -0
- package/vscode/src/vs/platform/environment/common/environment.d.ts +5 -0
- package/vscode/src/vs/platform/environment/common/environment.service.d.ts +16 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.d.ts +25 -22
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.service.d.ts +4 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionsProfileScannerService.d.ts +6 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.d.ts +7 -0
- package/vscode/src/vs/platform/extensionManagement/common/implicitActivationEvents.d.ts +8 -0
- package/vscode/src/vs/platform/extensionResourceLoader/common/extensionResourceLoader.service.d.ts +15 -0
- package/vscode/src/vs/platform/extensions/common/extensions.d.ts +944 -0
- package/vscode/src/vs/platform/files/browser/webFileSystemAccess.d.ts +25 -0
- package/vscode/src/vs/platform/files/common/files.d.ts +408 -0
- package/vscode/src/vs/platform/files/common/files.service.d.ts +168 -0
- package/vscode/src/vs/platform/files/common/watcher.d.ts +83 -0
- package/vscode/src/vs/platform/imageResize/common/imageResizeService.service.d.ts +3 -0
- package/vscode/src/vs/platform/instantiation/common/extensions.d.ts +8 -0
- package/vscode/src/vs/platform/instantiation/common/graph.d.ts +4 -0
- package/vscode/src/vs/platform/instantiation/common/instantiation.d.ts +31 -0
- package/vscode/src/vs/platform/jsonschemas/common/jsonContributionRegistry.d.ts +18 -0
- package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.d.ts +7 -0
- package/vscode/src/vs/platform/keybinding/common/keybinding.service.d.ts +27 -0
- package/vscode/src/vs/platform/keybinding/common/keybindingResolver.d.ts +24 -1
- package/vscode/src/vs/platform/keybinding/common/keybindingsRegistry.d.ts +3 -0
- package/vscode/src/vs/platform/keybinding/common/usLayoutResolvedKeybinding.d.ts +6 -0
- package/vscode/src/vs/platform/label/common/label.service.d.ts +12 -0
- package/vscode/src/vs/platform/layout/browser/layoutService.d.ts +6 -0
- package/vscode/src/vs/platform/layout/browser/layoutService.service.d.ts +51 -0
- package/vscode/src/vs/platform/list/browser/listService.service.d.ts +3 -0
- package/vscode/src/vs/platform/log/common/log.d.ts +30 -0
- package/vscode/src/vs/platform/log/common/log.service.d.ts +52 -0
- package/vscode/src/vs/platform/markers/common/markerService.d.ts +3 -0
- package/vscode/src/vs/platform/markers/common/markers.d.ts +6 -0
- package/vscode/src/vs/platform/notification/common/notification.d.ts +185 -0
- package/vscode/src/vs/platform/notification/common/notification.service.d.ts +63 -0
- package/vscode/src/vs/platform/observable/common/platformObservableUtils.d.ts +2 -0
- package/vscode/src/vs/platform/observable/common/wrapInHotClass.d.ts +10 -0
- package/vscode/src/vs/platform/observable/common/wrapInReloadableClass.d.ts +10 -0
- package/vscode/src/vs/platform/opener/browser/link.css +7 -0
- package/vscode/src/vs/platform/opener/common/opener.d.ts +33 -0
- package/vscode/src/vs/platform/opener/common/opener.service.d.ts +27 -0
- package/vscode/src/vs/platform/product/common/product.d.ts +5 -0
- package/vscode/src/vs/platform/product/common/product.js +1 -1
- package/vscode/src/vs/platform/progress/common/progress.d.ts +15 -0
- package/vscode/src/vs/platform/progress/common/progress.service.d.ts +6 -0
- package/vscode/src/vs/platform/quickinput/browser/media/quickInput.css +115 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInput.d.ts +4 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInputList.d.ts +14 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputDelegate.d.ts +3 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider.d.ts +3 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeController.d.ts +3 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.d.ts +4 -0
- package/vscode/src/vs/platform/quickinput/common/quickAccess.d.ts +121 -0
- package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +574 -0
- package/vscode/src/vs/platform/quickinput/common/quickInput.service.d.ts +63 -0
- package/vscode/src/vs/platform/registry/common/platform.d.ts +14 -0
- package/vscode/src/vs/platform/remote/common/remoteAuthorityResolver.service.d.ts +7 -0
- package/vscode/src/vs/platform/remote/common/remoteExtensionsScanner.service.d.ts +3 -0
- package/vscode/src/vs/platform/remote/common/remoteSocketFactoryService.service.d.ts +6 -0
- package/vscode/src/vs/platform/storage/common/storage.d.ts +45 -0
- package/vscode/src/vs/platform/storage/common/storage.service.d.ts +120 -0
- package/vscode/src/vs/platform/telemetry/common/telemetry.service.d.ts +13 -0
- package/vscode/src/vs/platform/telemetry/common/telemetryUtils.d.ts +40 -0
- package/vscode/src/vs/platform/terminal/common/terminal.d.ts +342 -1
- package/vscode/src/vs/platform/terminal/common/terminal.service.d.ts +28 -0
- package/vscode/src/vs/platform/terminal/common/terminalProcess.d.ts +4 -0
- package/vscode/src/vs/platform/theme/common/colorUtils.d.ts +37 -0
- package/vscode/src/vs/platform/theme/common/iconRegistry.d.ts +32 -0
- package/vscode/src/vs/platform/theme/common/theme.d.ts +3 -0
- package/vscode/src/vs/platform/theme/common/themeService.d.ts +30 -0
- package/vscode/src/vs/platform/tunnel/common/tunnel.d.ts +13 -1
- package/vscode/src/vs/platform/undoRedo/common/undoRedo.d.ts +32 -0
- package/vscode/src/vs/platform/undoRedo/common/undoRedo.service.d.ts +32 -0
- package/vscode/src/vs/platform/update/common/update.d.ts +17 -0
- package/vscode/src/vs/platform/uriIdentity/common/uriIdentity.service.d.ts +26 -0
- package/vscode/src/vs/platform/url/common/url.d.ts +6 -0
- package/vscode/src/vs/platform/url/common/url.service.d.ts +5 -0
- package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.d.ts +3 -0
- package/vscode/src/vs/platform/userDataProfile/common/userDataProfileStorageService.service.d.ts +16 -0
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.d.ts +12 -12
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.service.d.ts +4 -0
- package/vscode/src/vs/platform/webContentExtractor/common/webContentExtractor.d.ts +5 -0
- package/vscode/src/vs/platform/window/common/window.d.ts +39 -0
- package/vscode/src/vs/platform/workspace/common/workspace.d.ts +71 -1
- package/vscode/src/vs/platform/workspace/common/workspace.service.d.ts +36 -0
- package/vscode/src/vs/workbench/api/common/extHost.api.impl.d.ts +3 -0
- package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +93 -3
- package/vscode/src/vs/workbench/api/common/extHostAuthentication.d.ts +9 -0
- package/vscode/src/vs/workbench/api/common/extHostConsoleForwarder.d.ts +9 -0
- package/vscode/src/vs/workbench/api/common/extHostExtensionActivator.d.ts +13 -0
- package/vscode/src/vs/workbench/api/common/extHostExtensionService.d.ts +7 -0
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.d.ts +2 -0
- package/vscode/src/vs/workbench/api/common/extHostMcp.d.ts +1 -0
- package/vscode/src/vs/workbench/api/common/extHostNotebook.d.ts +11 -0
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.d.ts +7 -0
- package/vscode/src/vs/workbench/api/common/extHostTestItem.d.ts +3 -0
- package/vscode/src/vs/workbench/api/common/extHostTesting.d.ts +96 -2
- package/vscode/src/vs/workbench/api/common/extHostTestingPrivateApi.d.ts +5 -0
- package/vscode/src/vs/workbench/api/common/extHostTunnelService.d.ts +8 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +123 -0
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.d.ts +3 -0
- package/vscode/src/vs/workbench/browser/actions/media/actions.css +12 -0
- package/vscode/src/vs/workbench/browser/parts/editor/editor.d.ts +69 -0
- package/vscode/src/vs/workbench/common/composite.d.ts +24 -0
- package/vscode/src/vs/workbench/common/contributions.d.ts +62 -0
- package/vscode/src/vs/workbench/common/editor/diffEditorInput.d.ts +4 -0
- package/vscode/src/vs/workbench/common/editor/diffEditorModel.d.ts +4 -0
- package/vscode/src/vs/workbench/common/editor/editorInput.d.ts +181 -0
- package/vscode/src/vs/workbench/common/editor/editorModel.d.ts +17 -0
- package/vscode/src/vs/workbench/common/editor/sideBySideEditorInput.d.ts +3 -0
- package/vscode/src/vs/workbench/common/editor/textDiffEditorModel.d.ts +4 -0
- package/vscode/src/vs/workbench/common/editor/textEditorModel.d.ts +15 -0
- package/vscode/src/vs/workbench/common/editor.d.ts +617 -0
- package/vscode/src/vs/workbench/common/panecomposite.d.ts +3 -0
- package/vscode/src/vs/workbench/common/views.d.ts +74 -0
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.service.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatContentParts.d.ts +11 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatMarkdownAnchorService.service.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContextPickService.service.d.ts +5 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.service.d.ts +9 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.d.ts +58 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.service.d.ts +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.d.ts +19 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.service.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatSlashCommands.service.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariableEntries.d.ts +18 -0
- package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.d.ts +11 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +12 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.service.d.ts +5 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/contentProviders/types.d.ts +34 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/parsers/types.d.ts +64 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.d.ts +78 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.service.d.ts +40 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/promptTsxTypes.d.ts +10 -0
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.css +9 -0
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/editorLineNumberMenu.d.ts +6 -0
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/menuPreventer.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.d.ts +9 -0
- package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.d.ts +33 -0
- package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.d.ts +26 -0
- package/vscode/src/vs/workbench/contrib/debug/common/debug.d.ts +161 -0
- package/vscode/src/vs/workbench/contrib/debug/common/debug.service.d.ts +130 -0
- package/vscode/src/vs/workbench/contrib/debug/common/debugUtils.d.ts +11 -0
- package/vscode/src/vs/workbench/contrib/debug/common/debugVisualizers.service.d.ts +18 -0
- package/vscode/src/vs/workbench/contrib/externalUriOpener/common/externalUriOpenerService.service.d.ts +7 -0
- package/vscode/src/vs/workbench/contrib/files/browser/files.service.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/logs/common/defaultLogLevels.service.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpRegistryTypes.d.ts +14 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpRegistryTypes.service.d.ts +9 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.d.ts +124 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.service.d.ts +15 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/modelContextProtocol.d.ts +787 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.d.ts +71 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorModelResolverService.d.ts +19 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookKernelService.service.d.ts +13 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookRendererMessagingService.d.ts +7 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookRendererMessagingService.service.d.ts +12 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookService.service.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/scm/browser/quickDiffModel.service.d.ts +6 -0
- package/vscode/src/vs/workbench/contrib/scm/common/scm.service.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/search/browser/replace.service.d.ts +14 -0
- package/vscode/src/vs/workbench/contrib/speech/common/speechService.service.d.ts +14 -0
- package/vscode/src/vs/workbench/contrib/tags/common/workspaceTags.service.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/tasks/common/taskService.service.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.d.ts +224 -0
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.d.ts +508 -13
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.service.d.ts +92 -0
- package/vscode/src/vs/workbench/contrib/terminal/browser/xterm-private.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/terminal/common/environmentVariable.service.d.ts +21 -0
- package/vscode/src/vs/workbench/contrib/terminal/common/terminal.service.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testCoverageService.service.d.ts +16 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testExplorerFilterState.service.d.ts +31 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testId.d.ts +79 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testItemCollection.d.ts +49 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testProfileService.service.d.ts +36 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testResultService.service.d.ts +24 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testResultStorage.service.d.ts +6 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testService.service.d.ts +62 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testTypes.d.ts +150 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testingContinuousRunService.service.d.ts +36 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testingDecorations.service.d.ts +19 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testingPeekOpener.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testingPeekOpener.service.d.ts +18 -0
- package/vscode/src/vs/workbench/contrib/timeline/common/timeline.d.ts +29 -0
- package/vscode/src/vs/workbench/contrib/webview/browser/webview.service.d.ts +18 -0
- package/vscode/src/vs/workbench/contrib/webview/common/webview.d.ts +19 -0
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewWorkbenchService.service.d.ts +31 -0
- package/vscode/src/vs/workbench/contrib/webviewView/browser/webviewViewService.service.d.ts +10 -0
- package/vscode/src/vs/workbench/services/activity/common/activity.service.d.ts +21 -0
- package/vscode/src/vs/workbench/services/authentication/browser/authenticationAccessService.service.d.ts +8 -0
- package/vscode/src/vs/workbench/services/authentication/browser/authenticationMcpAccessService.service.d.ts +8 -0
- package/vscode/src/vs/workbench/services/authentication/browser/authenticationMcpService.service.d.ts +41 -0
- package/vscode/src/vs/workbench/services/authentication/browser/authenticationMcpUsageService.service.d.ts +24 -0
- package/vscode/src/vs/workbench/services/authentication/browser/authenticationUsageService.service.d.ts +24 -0
- package/vscode/src/vs/workbench/services/authentication/common/authentication.d.ts +107 -0
- package/vscode/src/vs/workbench/services/authentication/common/authentication.service.d.ts +124 -0
- package/vscode/src/vs/workbench/services/authentication/common/authenticationQuery.d.ts +267 -0
- package/vscode/src/vs/workbench/services/authentication/common/authenticationQuery.service.d.ts +33 -0
- package/vscode/src/vs/workbench/services/authentication/common/dynamicAuthenticationProviderStorage.d.ts +3 -0
- package/vscode/src/vs/workbench/services/authentication/common/dynamicAuthenticationProviderStorage.service.d.ts +39 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolver.service.d.ts +20 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverExpression.d.ts +29 -0
- package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.d.ts +511 -0
- package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.service.d.ts +49 -0
- package/vscode/src/vs/workbench/services/editor/common/editorPaneService.service.d.ts +6 -0
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.d.ts +12 -0
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.service.d.ts +41 -0
- package/vscode/src/vs/workbench/services/editor/common/editorService.d.ts +45 -0
- package/vscode/src/vs/workbench/services/editor/common/editorService.service.d.ts +174 -0
- package/vscode/src/vs/workbench/services/environment/common/environmentService.service.d.ts +4 -0
- package/vscode/src/vs/workbench/services/extensionManagement/common/extensionManagement.service.d.ts +44 -0
- package/vscode/src/vs/workbench/services/extensions/common/extensionHostProtocol.d.ts +3 -0
- package/vscode/src/vs/workbench/services/extensions/common/extensionHostProxy.d.ts +3 -0
- package/vscode/src/vs/workbench/services/extensions/common/extensions.d.ts +64 -0
- package/vscode/src/vs/workbench/services/extensions/common/extensions.service.d.ts +94 -0
- package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.d.ts +4 -0
- package/vscode/src/vs/workbench/services/extensions/common/proxyIdentifier.d.ts +18 -0
- package/vscode/src/vs/workbench/services/files/common/elevatedFileService.service.d.ts +7 -0
- package/vscode/src/vs/workbench/services/history/common/history.d.ts +28 -0
- package/vscode/src/vs/workbench/services/history/common/history.service.d.ts +51 -0
- package/vscode/src/vs/workbench/services/host/browser/host.service.d.ts +69 -0
- package/vscode/src/vs/workbench/services/keybinding/common/fallbackKeyboardMapper.d.ts +3 -0
- package/vscode/src/vs/workbench/services/languageDetection/common/languageDetectionWorkerService.service.d.ts +9 -0
- package/vscode/src/vs/workbench/services/layout/browser/layoutService.service.d.ts +119 -0
- package/vscode/src/vs/workbench/services/lifecycle/common/lifecycle.d.ts +116 -0
- package/vscode/src/vs/workbench/services/lifecycle/common/lifecycle.service.d.ts +54 -0
- package/vscode/src/vs/workbench/services/lifecycle/common/lifecycleService.d.ts +3 -0
- package/vscode/src/vs/workbench/services/output/common/output.d.ts +57 -0
- package/vscode/src/vs/workbench/services/output/common/output.service.d.ts +45 -0
- package/vscode/src/vs/workbench/services/panecomposite/browser/panecomposite.service.d.ts +30 -0
- package/vscode/src/vs/workbench/services/path/common/pathService.service.d.ts +42 -0
- package/vscode/src/vs/workbench/services/remote/common/remoteAgentService.service.d.ts +16 -0
- package/vscode/src/vs/workbench/services/search/common/folderQuerySearchTree.d.ts +4 -0
- package/vscode/src/vs/workbench/services/search/common/queryBuilder.d.ts +28 -0
- package/vscode/src/vs/workbench/services/search/common/search.d.ts +32 -0
- package/vscode/src/vs/workbench/services/search/common/search.service.d.ts +3 -0
- package/vscode/src/vs/workbench/services/search/common/searchExtConversionTypes.d.ts +273 -0
- package/vscode/src/vs/workbench/services/search/common/searchExtTypes.d.ts +327 -0
- package/vscode/src/vs/workbench/services/search/common/textSearchManager.d.ts +6 -0
- package/vscode/src/vs/workbench/services/statusbar/browser/statusbar.d.ts +91 -0
- package/vscode/src/vs/workbench/services/statusbar/browser/statusbar.service.d.ts +10 -0
- package/vscode/src/vs/workbench/services/terminal/common/embedderTerminalService.service.d.ts +3 -0
- package/vscode/src/vs/workbench/services/textfile/common/encoding.d.ts +9 -0
- package/vscode/src/vs/workbench/services/textfile/common/textEditorService.service.d.ts +17 -0
- package/vscode/src/vs/workbench/services/textfile/common/textfiles.d.ts +179 -0
- package/vscode/src/vs/workbench/services/textfile/common/textfiles.service.d.ts +74 -0
- package/vscode/src/vs/workbench/services/timer/browser/timerService.service.d.ts +31 -0
- package/vscode/src/vs/workbench/services/title/browser/titleService.service.d.ts +6 -0
- package/vscode/src/vs/workbench/services/untitled/common/untitledTextEditorService.service.d.ts +46 -0
- package/vscode/src/vs/workbench/services/userActivity/common/userActivityService.service.d.ts +14 -0
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyBackup.d.ts +11 -0
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyBackup.service.d.ts +32 -0
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyEditorService.service.d.ts +9 -0
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyFileService.service.d.ts +84 -0
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyHistory.service.d.ts +43 -0
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyService.service.d.ts +63 -0
- package/vscode/src/vs/workbench/services/workspaces/common/workspaceEditing.service.d.ts +28 -0
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
import { DisposableStore, IDisposable } from "./lifecycle.js";
|
|
2
2
|
export interface CancellationToken {
|
|
3
|
+
/**
|
|
4
|
+
* A flag signalling is cancellation has been requested.
|
|
5
|
+
*/
|
|
3
6
|
readonly isCancellationRequested: boolean;
|
|
7
|
+
/**
|
|
8
|
+
* An event which fires when cancellation is requested. This event
|
|
9
|
+
* only ever fires `once` as cancellation can only happen once. Listeners
|
|
10
|
+
* that are registered after cancellation will be called (next event loop run),
|
|
11
|
+
* but also only once.
|
|
12
|
+
*
|
|
13
|
+
* @event
|
|
14
|
+
*/
|
|
4
15
|
readonly onCancellationRequested: (listener: (e: any) => any, thisArgs?: any, disposables?: IDisposable[]) => IDisposable;
|
|
5
16
|
}
|
|
6
17
|
export declare namespace CancellationToken {
|
|
@@ -1,24 +1,85 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* An inlined enum containing useful character codes (to be used with String.charCodeAt).
|
|
3
|
+
* Please leave the const keyword such that it gets inlined when compiled to JavaScript!
|
|
4
|
+
*/
|
|
1
5
|
export declare enum CharCode {
|
|
2
6
|
Null = 0,
|
|
7
|
+
/**
|
|
8
|
+
* The `\b` character.
|
|
9
|
+
*/
|
|
3
10
|
Backspace = 8,
|
|
11
|
+
/**
|
|
12
|
+
* The `\t` character.
|
|
13
|
+
*/
|
|
4
14
|
Tab = 9,
|
|
15
|
+
/**
|
|
16
|
+
* The `\n` character.
|
|
17
|
+
*/
|
|
5
18
|
LineFeed = 10,
|
|
19
|
+
/**
|
|
20
|
+
* The `\r` character.
|
|
21
|
+
*/
|
|
6
22
|
CarriageReturn = 13,
|
|
7
23
|
Space = 32,
|
|
24
|
+
/**
|
|
25
|
+
* The `!` character.
|
|
26
|
+
*/
|
|
8
27
|
ExclamationMark = 33,
|
|
28
|
+
/**
|
|
29
|
+
* The `"` character.
|
|
30
|
+
*/
|
|
9
31
|
DoubleQuote = 34,
|
|
32
|
+
/**
|
|
33
|
+
* The `#` character.
|
|
34
|
+
*/
|
|
10
35
|
Hash = 35,
|
|
36
|
+
/**
|
|
37
|
+
* The `$` character.
|
|
38
|
+
*/
|
|
11
39
|
DollarSign = 36,
|
|
40
|
+
/**
|
|
41
|
+
* The `%` character.
|
|
42
|
+
*/
|
|
12
43
|
PercentSign = 37,
|
|
44
|
+
/**
|
|
45
|
+
* The `&` character.
|
|
46
|
+
*/
|
|
13
47
|
Ampersand = 38,
|
|
48
|
+
/**
|
|
49
|
+
* The `'` character.
|
|
50
|
+
*/
|
|
14
51
|
SingleQuote = 39,
|
|
52
|
+
/**
|
|
53
|
+
* The `(` character.
|
|
54
|
+
*/
|
|
15
55
|
OpenParen = 40,
|
|
56
|
+
/**
|
|
57
|
+
* The `)` character.
|
|
58
|
+
*/
|
|
16
59
|
CloseParen = 41,
|
|
60
|
+
/**
|
|
61
|
+
* The `*` character.
|
|
62
|
+
*/
|
|
17
63
|
Asterisk = 42,
|
|
64
|
+
/**
|
|
65
|
+
* The `+` character.
|
|
66
|
+
*/
|
|
18
67
|
Plus = 43,
|
|
68
|
+
/**
|
|
69
|
+
* The `,` character.
|
|
70
|
+
*/
|
|
19
71
|
Comma = 44,
|
|
72
|
+
/**
|
|
73
|
+
* The `-` character.
|
|
74
|
+
*/
|
|
20
75
|
Dash = 45,
|
|
76
|
+
/**
|
|
77
|
+
* The `.` character.
|
|
78
|
+
*/
|
|
21
79
|
Period = 46,
|
|
80
|
+
/**
|
|
81
|
+
* The `/` character.
|
|
82
|
+
*/
|
|
22
83
|
Slash = 47,
|
|
23
84
|
Digit0 = 48,
|
|
24
85
|
Digit1 = 49,
|
|
@@ -30,12 +91,33 @@ export declare enum CharCode {
|
|
|
30
91
|
Digit7 = 55,
|
|
31
92
|
Digit8 = 56,
|
|
32
93
|
Digit9 = 57,
|
|
94
|
+
/**
|
|
95
|
+
* The `:` character.
|
|
96
|
+
*/
|
|
33
97
|
Colon = 58,
|
|
98
|
+
/**
|
|
99
|
+
* The `;` character.
|
|
100
|
+
*/
|
|
34
101
|
Semicolon = 59,
|
|
102
|
+
/**
|
|
103
|
+
* The `<` character.
|
|
104
|
+
*/
|
|
35
105
|
LessThan = 60,
|
|
106
|
+
/**
|
|
107
|
+
* The `=` character.
|
|
108
|
+
*/
|
|
36
109
|
Equals = 61,
|
|
110
|
+
/**
|
|
111
|
+
* The `>` character.
|
|
112
|
+
*/
|
|
37
113
|
GreaterThan = 62,
|
|
114
|
+
/**
|
|
115
|
+
* The `?` character.
|
|
116
|
+
*/
|
|
38
117
|
QuestionMark = 63,
|
|
118
|
+
/**
|
|
119
|
+
* The `@` character.
|
|
120
|
+
*/
|
|
39
121
|
AtSign = 64,
|
|
40
122
|
A = 65,
|
|
41
123
|
B = 66,
|
|
@@ -63,11 +145,29 @@ export declare enum CharCode {
|
|
|
63
145
|
X = 88,
|
|
64
146
|
Y = 89,
|
|
65
147
|
Z = 90,
|
|
148
|
+
/**
|
|
149
|
+
* The `[` character.
|
|
150
|
+
*/
|
|
66
151
|
OpenSquareBracket = 91,
|
|
152
|
+
/**
|
|
153
|
+
* The `\` character.
|
|
154
|
+
*/
|
|
67
155
|
Backslash = 92,
|
|
156
|
+
/**
|
|
157
|
+
* The `]` character.
|
|
158
|
+
*/
|
|
68
159
|
CloseSquareBracket = 93,
|
|
160
|
+
/**
|
|
161
|
+
* The `^` character.
|
|
162
|
+
*/
|
|
69
163
|
Caret = 94,
|
|
164
|
+
/**
|
|
165
|
+
* The `_` character.
|
|
166
|
+
*/
|
|
70
167
|
Underline = 95,
|
|
168
|
+
/**
|
|
169
|
+
* The ``(`)`` character.
|
|
170
|
+
*/
|
|
71
171
|
BackTick = 96,
|
|
72
172
|
a = 97,
|
|
73
173
|
b = 98,
|
|
@@ -95,200 +195,233 @@ export declare enum CharCode {
|
|
|
95
195
|
x = 120,
|
|
96
196
|
y = 121,
|
|
97
197
|
z = 122,
|
|
198
|
+
/**
|
|
199
|
+
* The `{` character.
|
|
200
|
+
*/
|
|
98
201
|
OpenCurlyBrace = 123,
|
|
202
|
+
/**
|
|
203
|
+
* The `|` character.
|
|
204
|
+
*/
|
|
99
205
|
Pipe = 124,
|
|
206
|
+
/**
|
|
207
|
+
* The `}` character.
|
|
208
|
+
*/
|
|
100
209
|
CloseCurlyBrace = 125,
|
|
210
|
+
/**
|
|
211
|
+
* The `~` character.
|
|
212
|
+
*/
|
|
101
213
|
Tilde = 126,
|
|
214
|
+
/**
|
|
215
|
+
* The (no-break space) character.
|
|
216
|
+
* Unicode Character 'NO-BREAK SPACE' (U+00A0)
|
|
217
|
+
*/
|
|
102
218
|
NoBreakSpace = 160,
|
|
103
|
-
U_Combining_Grave_Accent = 768
|
|
104
|
-
U_Combining_Acute_Accent = 769
|
|
105
|
-
U_Combining_Circumflex_Accent = 770
|
|
106
|
-
U_Combining_Tilde = 771
|
|
107
|
-
U_Combining_Macron = 772
|
|
108
|
-
U_Combining_Overline = 773
|
|
109
|
-
U_Combining_Breve = 774
|
|
110
|
-
U_Combining_Dot_Above = 775
|
|
111
|
-
U_Combining_Diaeresis = 776
|
|
112
|
-
U_Combining_Hook_Above = 777
|
|
113
|
-
U_Combining_Ring_Above = 778
|
|
114
|
-
U_Combining_Double_Acute_Accent = 779
|
|
115
|
-
U_Combining_Caron = 780
|
|
116
|
-
U_Combining_Vertical_Line_Above = 781
|
|
117
|
-
U_Combining_Double_Vertical_Line_Above = 782
|
|
118
|
-
U_Combining_Double_Grave_Accent = 783
|
|
119
|
-
U_Combining_Candrabindu = 784
|
|
120
|
-
U_Combining_Inverted_Breve = 785
|
|
121
|
-
U_Combining_Turned_Comma_Above = 786
|
|
122
|
-
U_Combining_Comma_Above = 787
|
|
123
|
-
U_Combining_Reversed_Comma_Above = 788
|
|
124
|
-
U_Combining_Comma_Above_Right = 789
|
|
125
|
-
U_Combining_Grave_Accent_Below = 790
|
|
126
|
-
U_Combining_Acute_Accent_Below = 791
|
|
127
|
-
U_Combining_Left_Tack_Below = 792
|
|
128
|
-
U_Combining_Right_Tack_Below = 793
|
|
129
|
-
U_Combining_Left_Angle_Above = 794
|
|
130
|
-
U_Combining_Horn = 795
|
|
131
|
-
U_Combining_Left_Half_Ring_Below = 796
|
|
132
|
-
U_Combining_Up_Tack_Below = 797
|
|
133
|
-
U_Combining_Down_Tack_Below = 798
|
|
134
|
-
U_Combining_Plus_Sign_Below = 799
|
|
135
|
-
U_Combining_Minus_Sign_Below = 800
|
|
136
|
-
U_Combining_Palatalized_Hook_Below = 801
|
|
137
|
-
U_Combining_Retroflex_Hook_Below = 802
|
|
138
|
-
U_Combining_Dot_Below = 803
|
|
139
|
-
U_Combining_Diaeresis_Below = 804
|
|
140
|
-
U_Combining_Ring_Below = 805
|
|
141
|
-
U_Combining_Comma_Below = 806
|
|
142
|
-
U_Combining_Cedilla = 807
|
|
143
|
-
U_Combining_Ogonek = 808
|
|
144
|
-
U_Combining_Vertical_Line_Below = 809
|
|
145
|
-
U_Combining_Bridge_Below = 810
|
|
146
|
-
U_Combining_Inverted_Double_Arch_Below = 811
|
|
147
|
-
U_Combining_Caron_Below = 812
|
|
148
|
-
U_Combining_Circumflex_Accent_Below = 813
|
|
149
|
-
U_Combining_Breve_Below = 814
|
|
150
|
-
U_Combining_Inverted_Breve_Below = 815
|
|
151
|
-
U_Combining_Tilde_Below = 816
|
|
152
|
-
U_Combining_Macron_Below = 817
|
|
153
|
-
U_Combining_Low_Line = 818
|
|
154
|
-
U_Combining_Double_Low_Line = 819
|
|
155
|
-
U_Combining_Tilde_Overlay = 820
|
|
156
|
-
U_Combining_Short_Stroke_Overlay = 821
|
|
157
|
-
U_Combining_Long_Stroke_Overlay = 822
|
|
158
|
-
U_Combining_Short_Solidus_Overlay = 823
|
|
159
|
-
U_Combining_Long_Solidus_Overlay = 824
|
|
160
|
-
U_Combining_Right_Half_Ring_Below = 825
|
|
161
|
-
U_Combining_Inverted_Bridge_Below = 826
|
|
162
|
-
U_Combining_Square_Below = 827
|
|
163
|
-
U_Combining_Seagull_Below = 828
|
|
164
|
-
U_Combining_X_Above = 829
|
|
165
|
-
U_Combining_Vertical_Tilde = 830
|
|
166
|
-
U_Combining_Double_Overline = 831
|
|
167
|
-
U_Combining_Grave_Tone_Mark = 832
|
|
168
|
-
U_Combining_Acute_Tone_Mark = 833
|
|
169
|
-
U_Combining_Greek_Perispomeni = 834
|
|
170
|
-
U_Combining_Greek_Koronis = 835
|
|
171
|
-
U_Combining_Greek_Dialytika_Tonos = 836
|
|
172
|
-
U_Combining_Greek_Ypogegrammeni = 837
|
|
173
|
-
U_Combining_Bridge_Above = 838
|
|
174
|
-
U_Combining_Equals_Sign_Below = 839
|
|
175
|
-
U_Combining_Double_Vertical_Line_Below = 840
|
|
176
|
-
U_Combining_Left_Angle_Below = 841
|
|
177
|
-
U_Combining_Not_Tilde_Above = 842
|
|
178
|
-
U_Combining_Homothetic_Above = 843
|
|
179
|
-
U_Combining_Almost_Equal_To_Above = 844
|
|
180
|
-
U_Combining_Left_Right_Arrow_Below = 845
|
|
181
|
-
U_Combining_Upwards_Arrow_Below = 846
|
|
182
|
-
U_Combining_Grapheme_Joiner = 847
|
|
183
|
-
U_Combining_Right_Arrowhead_Above = 848
|
|
184
|
-
U_Combining_Left_Half_Ring_Above = 849
|
|
185
|
-
U_Combining_Fermata = 850
|
|
186
|
-
U_Combining_X_Below = 851
|
|
187
|
-
U_Combining_Left_Arrowhead_Below = 852
|
|
188
|
-
U_Combining_Right_Arrowhead_Below = 853
|
|
189
|
-
U_Combining_Right_Arrowhead_And_Up_Arrowhead_Below = 854
|
|
190
|
-
U_Combining_Right_Half_Ring_Above = 855
|
|
191
|
-
U_Combining_Dot_Above_Right = 856
|
|
192
|
-
U_Combining_Asterisk_Below = 857
|
|
193
|
-
U_Combining_Double_Ring_Below = 858
|
|
194
|
-
U_Combining_Zigzag_Above = 859
|
|
195
|
-
U_Combining_Double_Breve_Below = 860
|
|
196
|
-
U_Combining_Double_Breve = 861
|
|
197
|
-
U_Combining_Double_Macron = 862
|
|
198
|
-
U_Combining_Double_Macron_Below = 863
|
|
199
|
-
U_Combining_Double_Tilde = 864
|
|
200
|
-
U_Combining_Double_Inverted_Breve = 865
|
|
201
|
-
U_Combining_Double_Rightwards_Arrow_Below = 866
|
|
202
|
-
U_Combining_Latin_Small_Letter_A = 867
|
|
203
|
-
U_Combining_Latin_Small_Letter_E = 868
|
|
204
|
-
U_Combining_Latin_Small_Letter_I = 869
|
|
205
|
-
U_Combining_Latin_Small_Letter_O = 870
|
|
206
|
-
U_Combining_Latin_Small_Letter_U = 871
|
|
207
|
-
U_Combining_Latin_Small_Letter_C = 872
|
|
208
|
-
U_Combining_Latin_Small_Letter_D = 873
|
|
209
|
-
U_Combining_Latin_Small_Letter_H = 874
|
|
210
|
-
U_Combining_Latin_Small_Letter_M = 875
|
|
211
|
-
U_Combining_Latin_Small_Letter_R = 876
|
|
212
|
-
U_Combining_Latin_Small_Letter_T = 877
|
|
213
|
-
U_Combining_Latin_Small_Letter_V = 878
|
|
214
|
-
U_Combining_Latin_Small_Letter_X = 879
|
|
219
|
+
U_Combining_Grave_Accent = 768,// U+0300 Combining Grave Accent
|
|
220
|
+
U_Combining_Acute_Accent = 769,// U+0301 Combining Acute Accent
|
|
221
|
+
U_Combining_Circumflex_Accent = 770,// U+0302 Combining Circumflex Accent
|
|
222
|
+
U_Combining_Tilde = 771,// U+0303 Combining Tilde
|
|
223
|
+
U_Combining_Macron = 772,// U+0304 Combining Macron
|
|
224
|
+
U_Combining_Overline = 773,// U+0305 Combining Overline
|
|
225
|
+
U_Combining_Breve = 774,// U+0306 Combining Breve
|
|
226
|
+
U_Combining_Dot_Above = 775,// U+0307 Combining Dot Above
|
|
227
|
+
U_Combining_Diaeresis = 776,// U+0308 Combining Diaeresis
|
|
228
|
+
U_Combining_Hook_Above = 777,// U+0309 Combining Hook Above
|
|
229
|
+
U_Combining_Ring_Above = 778,// U+030A Combining Ring Above
|
|
230
|
+
U_Combining_Double_Acute_Accent = 779,// U+030B Combining Double Acute Accent
|
|
231
|
+
U_Combining_Caron = 780,// U+030C Combining Caron
|
|
232
|
+
U_Combining_Vertical_Line_Above = 781,// U+030D Combining Vertical Line Above
|
|
233
|
+
U_Combining_Double_Vertical_Line_Above = 782,// U+030E Combining Double Vertical Line Above
|
|
234
|
+
U_Combining_Double_Grave_Accent = 783,// U+030F Combining Double Grave Accent
|
|
235
|
+
U_Combining_Candrabindu = 784,// U+0310 Combining Candrabindu
|
|
236
|
+
U_Combining_Inverted_Breve = 785,// U+0311 Combining Inverted Breve
|
|
237
|
+
U_Combining_Turned_Comma_Above = 786,// U+0312 Combining Turned Comma Above
|
|
238
|
+
U_Combining_Comma_Above = 787,// U+0313 Combining Comma Above
|
|
239
|
+
U_Combining_Reversed_Comma_Above = 788,// U+0314 Combining Reversed Comma Above
|
|
240
|
+
U_Combining_Comma_Above_Right = 789,// U+0315 Combining Comma Above Right
|
|
241
|
+
U_Combining_Grave_Accent_Below = 790,// U+0316 Combining Grave Accent Below
|
|
242
|
+
U_Combining_Acute_Accent_Below = 791,// U+0317 Combining Acute Accent Below
|
|
243
|
+
U_Combining_Left_Tack_Below = 792,// U+0318 Combining Left Tack Below
|
|
244
|
+
U_Combining_Right_Tack_Below = 793,// U+0319 Combining Right Tack Below
|
|
245
|
+
U_Combining_Left_Angle_Above = 794,// U+031A Combining Left Angle Above
|
|
246
|
+
U_Combining_Horn = 795,// U+031B Combining Horn
|
|
247
|
+
U_Combining_Left_Half_Ring_Below = 796,// U+031C Combining Left Half Ring Below
|
|
248
|
+
U_Combining_Up_Tack_Below = 797,// U+031D Combining Up Tack Below
|
|
249
|
+
U_Combining_Down_Tack_Below = 798,// U+031E Combining Down Tack Below
|
|
250
|
+
U_Combining_Plus_Sign_Below = 799,// U+031F Combining Plus Sign Below
|
|
251
|
+
U_Combining_Minus_Sign_Below = 800,// U+0320 Combining Minus Sign Below
|
|
252
|
+
U_Combining_Palatalized_Hook_Below = 801,// U+0321 Combining Palatalized Hook Below
|
|
253
|
+
U_Combining_Retroflex_Hook_Below = 802,// U+0322 Combining Retroflex Hook Below
|
|
254
|
+
U_Combining_Dot_Below = 803,// U+0323 Combining Dot Below
|
|
255
|
+
U_Combining_Diaeresis_Below = 804,// U+0324 Combining Diaeresis Below
|
|
256
|
+
U_Combining_Ring_Below = 805,// U+0325 Combining Ring Below
|
|
257
|
+
U_Combining_Comma_Below = 806,// U+0326 Combining Comma Below
|
|
258
|
+
U_Combining_Cedilla = 807,// U+0327 Combining Cedilla
|
|
259
|
+
U_Combining_Ogonek = 808,// U+0328 Combining Ogonek
|
|
260
|
+
U_Combining_Vertical_Line_Below = 809,// U+0329 Combining Vertical Line Below
|
|
261
|
+
U_Combining_Bridge_Below = 810,// U+032A Combining Bridge Below
|
|
262
|
+
U_Combining_Inverted_Double_Arch_Below = 811,// U+032B Combining Inverted Double Arch Below
|
|
263
|
+
U_Combining_Caron_Below = 812,// U+032C Combining Caron Below
|
|
264
|
+
U_Combining_Circumflex_Accent_Below = 813,// U+032D Combining Circumflex Accent Below
|
|
265
|
+
U_Combining_Breve_Below = 814,// U+032E Combining Breve Below
|
|
266
|
+
U_Combining_Inverted_Breve_Below = 815,// U+032F Combining Inverted Breve Below
|
|
267
|
+
U_Combining_Tilde_Below = 816,// U+0330 Combining Tilde Below
|
|
268
|
+
U_Combining_Macron_Below = 817,// U+0331 Combining Macron Below
|
|
269
|
+
U_Combining_Low_Line = 818,// U+0332 Combining Low Line
|
|
270
|
+
U_Combining_Double_Low_Line = 819,// U+0333 Combining Double Low Line
|
|
271
|
+
U_Combining_Tilde_Overlay = 820,// U+0334 Combining Tilde Overlay
|
|
272
|
+
U_Combining_Short_Stroke_Overlay = 821,// U+0335 Combining Short Stroke Overlay
|
|
273
|
+
U_Combining_Long_Stroke_Overlay = 822,// U+0336 Combining Long Stroke Overlay
|
|
274
|
+
U_Combining_Short_Solidus_Overlay = 823,// U+0337 Combining Short Solidus Overlay
|
|
275
|
+
U_Combining_Long_Solidus_Overlay = 824,// U+0338 Combining Long Solidus Overlay
|
|
276
|
+
U_Combining_Right_Half_Ring_Below = 825,// U+0339 Combining Right Half Ring Below
|
|
277
|
+
U_Combining_Inverted_Bridge_Below = 826,// U+033A Combining Inverted Bridge Below
|
|
278
|
+
U_Combining_Square_Below = 827,// U+033B Combining Square Below
|
|
279
|
+
U_Combining_Seagull_Below = 828,// U+033C Combining Seagull Below
|
|
280
|
+
U_Combining_X_Above = 829,// U+033D Combining X Above
|
|
281
|
+
U_Combining_Vertical_Tilde = 830,// U+033E Combining Vertical Tilde
|
|
282
|
+
U_Combining_Double_Overline = 831,// U+033F Combining Double Overline
|
|
283
|
+
U_Combining_Grave_Tone_Mark = 832,// U+0340 Combining Grave Tone Mark
|
|
284
|
+
U_Combining_Acute_Tone_Mark = 833,// U+0341 Combining Acute Tone Mark
|
|
285
|
+
U_Combining_Greek_Perispomeni = 834,// U+0342 Combining Greek Perispomeni
|
|
286
|
+
U_Combining_Greek_Koronis = 835,// U+0343 Combining Greek Koronis
|
|
287
|
+
U_Combining_Greek_Dialytika_Tonos = 836,// U+0344 Combining Greek Dialytika Tonos
|
|
288
|
+
U_Combining_Greek_Ypogegrammeni = 837,// U+0345 Combining Greek Ypogegrammeni
|
|
289
|
+
U_Combining_Bridge_Above = 838,// U+0346 Combining Bridge Above
|
|
290
|
+
U_Combining_Equals_Sign_Below = 839,// U+0347 Combining Equals Sign Below
|
|
291
|
+
U_Combining_Double_Vertical_Line_Below = 840,// U+0348 Combining Double Vertical Line Below
|
|
292
|
+
U_Combining_Left_Angle_Below = 841,// U+0349 Combining Left Angle Below
|
|
293
|
+
U_Combining_Not_Tilde_Above = 842,// U+034A Combining Not Tilde Above
|
|
294
|
+
U_Combining_Homothetic_Above = 843,// U+034B Combining Homothetic Above
|
|
295
|
+
U_Combining_Almost_Equal_To_Above = 844,// U+034C Combining Almost Equal To Above
|
|
296
|
+
U_Combining_Left_Right_Arrow_Below = 845,// U+034D Combining Left Right Arrow Below
|
|
297
|
+
U_Combining_Upwards_Arrow_Below = 846,// U+034E Combining Upwards Arrow Below
|
|
298
|
+
U_Combining_Grapheme_Joiner = 847,// U+034F Combining Grapheme Joiner
|
|
299
|
+
U_Combining_Right_Arrowhead_Above = 848,// U+0350 Combining Right Arrowhead Above
|
|
300
|
+
U_Combining_Left_Half_Ring_Above = 849,// U+0351 Combining Left Half Ring Above
|
|
301
|
+
U_Combining_Fermata = 850,// U+0352 Combining Fermata
|
|
302
|
+
U_Combining_X_Below = 851,// U+0353 Combining X Below
|
|
303
|
+
U_Combining_Left_Arrowhead_Below = 852,// U+0354 Combining Left Arrowhead Below
|
|
304
|
+
U_Combining_Right_Arrowhead_Below = 853,// U+0355 Combining Right Arrowhead Below
|
|
305
|
+
U_Combining_Right_Arrowhead_And_Up_Arrowhead_Below = 854,// U+0356 Combining Right Arrowhead And Up Arrowhead Below
|
|
306
|
+
U_Combining_Right_Half_Ring_Above = 855,// U+0357 Combining Right Half Ring Above
|
|
307
|
+
U_Combining_Dot_Above_Right = 856,// U+0358 Combining Dot Above Right
|
|
308
|
+
U_Combining_Asterisk_Below = 857,// U+0359 Combining Asterisk Below
|
|
309
|
+
U_Combining_Double_Ring_Below = 858,// U+035A Combining Double Ring Below
|
|
310
|
+
U_Combining_Zigzag_Above = 859,// U+035B Combining Zigzag Above
|
|
311
|
+
U_Combining_Double_Breve_Below = 860,// U+035C Combining Double Breve Below
|
|
312
|
+
U_Combining_Double_Breve = 861,// U+035D Combining Double Breve
|
|
313
|
+
U_Combining_Double_Macron = 862,// U+035E Combining Double Macron
|
|
314
|
+
U_Combining_Double_Macron_Below = 863,// U+035F Combining Double Macron Below
|
|
315
|
+
U_Combining_Double_Tilde = 864,// U+0360 Combining Double Tilde
|
|
316
|
+
U_Combining_Double_Inverted_Breve = 865,// U+0361 Combining Double Inverted Breve
|
|
317
|
+
U_Combining_Double_Rightwards_Arrow_Below = 866,// U+0362 Combining Double Rightwards Arrow Below
|
|
318
|
+
U_Combining_Latin_Small_Letter_A = 867,// U+0363 Combining Latin Small Letter A
|
|
319
|
+
U_Combining_Latin_Small_Letter_E = 868,// U+0364 Combining Latin Small Letter E
|
|
320
|
+
U_Combining_Latin_Small_Letter_I = 869,// U+0365 Combining Latin Small Letter I
|
|
321
|
+
U_Combining_Latin_Small_Letter_O = 870,// U+0366 Combining Latin Small Letter O
|
|
322
|
+
U_Combining_Latin_Small_Letter_U = 871,// U+0367 Combining Latin Small Letter U
|
|
323
|
+
U_Combining_Latin_Small_Letter_C = 872,// U+0368 Combining Latin Small Letter C
|
|
324
|
+
U_Combining_Latin_Small_Letter_D = 873,// U+0369 Combining Latin Small Letter D
|
|
325
|
+
U_Combining_Latin_Small_Letter_H = 874,// U+036A Combining Latin Small Letter H
|
|
326
|
+
U_Combining_Latin_Small_Letter_M = 875,// U+036B Combining Latin Small Letter M
|
|
327
|
+
U_Combining_Latin_Small_Letter_R = 876,// U+036C Combining Latin Small Letter R
|
|
328
|
+
U_Combining_Latin_Small_Letter_T = 877,// U+036D Combining Latin Small Letter T
|
|
329
|
+
U_Combining_Latin_Small_Letter_V = 878,// U+036E Combining Latin Small Letter V
|
|
330
|
+
U_Combining_Latin_Small_Letter_X = 879,// U+036F Combining Latin Small Letter X
|
|
331
|
+
/**
|
|
332
|
+
* Unicode Character 'LINE SEPARATOR' (U+2028)
|
|
333
|
+
* http://www.fileformat.info/info/unicode/char/2028/index.htm
|
|
334
|
+
*/
|
|
215
335
|
LINE_SEPARATOR = 8232,
|
|
336
|
+
/**
|
|
337
|
+
* Unicode Character 'PARAGRAPH SEPARATOR' (U+2029)
|
|
338
|
+
* http://www.fileformat.info/info/unicode/char/2029/index.htm
|
|
339
|
+
*/
|
|
216
340
|
PARAGRAPH_SEPARATOR = 8233,
|
|
341
|
+
/**
|
|
342
|
+
* Unicode Character 'NEXT LINE' (U+0085)
|
|
343
|
+
* http://www.fileformat.info/info/unicode/char/0085/index.htm
|
|
344
|
+
*/
|
|
217
345
|
NEXT_LINE = 133,
|
|
218
|
-
U_CIRCUMFLEX = 94
|
|
219
|
-
U_GRAVE_ACCENT = 96
|
|
220
|
-
U_DIAERESIS = 168
|
|
221
|
-
U_MACRON = 175
|
|
222
|
-
U_ACUTE_ACCENT = 180
|
|
223
|
-
U_CEDILLA = 184
|
|
224
|
-
U_MODIFIER_LETTER_LEFT_ARROWHEAD = 706
|
|
225
|
-
U_MODIFIER_LETTER_RIGHT_ARROWHEAD = 707
|
|
226
|
-
U_MODIFIER_LETTER_UP_ARROWHEAD = 708
|
|
227
|
-
U_MODIFIER_LETTER_DOWN_ARROWHEAD = 709
|
|
228
|
-
U_MODIFIER_LETTER_CENTRED_RIGHT_HALF_RING = 722
|
|
229
|
-
U_MODIFIER_LETTER_CENTRED_LEFT_HALF_RING = 723
|
|
230
|
-
U_MODIFIER_LETTER_UP_TACK = 724
|
|
231
|
-
U_MODIFIER_LETTER_DOWN_TACK = 725
|
|
232
|
-
U_MODIFIER_LETTER_PLUS_SIGN = 726
|
|
233
|
-
U_MODIFIER_LETTER_MINUS_SIGN = 727
|
|
234
|
-
U_BREVE = 728
|
|
235
|
-
U_DOT_ABOVE = 729
|
|
236
|
-
U_RING_ABOVE = 730
|
|
237
|
-
U_OGONEK = 731
|
|
238
|
-
U_SMALL_TILDE = 732
|
|
239
|
-
U_DOUBLE_ACUTE_ACCENT = 733
|
|
240
|
-
U_MODIFIER_LETTER_RHOTIC_HOOK = 734
|
|
241
|
-
U_MODIFIER_LETTER_CROSS_ACCENT = 735
|
|
242
|
-
U_MODIFIER_LETTER_EXTRA_HIGH_TONE_BAR = 741
|
|
243
|
-
U_MODIFIER_LETTER_HIGH_TONE_BAR = 742
|
|
244
|
-
U_MODIFIER_LETTER_MID_TONE_BAR = 743
|
|
245
|
-
U_MODIFIER_LETTER_LOW_TONE_BAR = 744
|
|
246
|
-
U_MODIFIER_LETTER_EXTRA_LOW_TONE_BAR = 745
|
|
247
|
-
U_MODIFIER_LETTER_YIN_DEPARTING_TONE_MARK = 746
|
|
248
|
-
U_MODIFIER_LETTER_YANG_DEPARTING_TONE_MARK = 747
|
|
249
|
-
U_MODIFIER_LETTER_UNASPIRATED = 749
|
|
250
|
-
U_MODIFIER_LETTER_LOW_DOWN_ARROWHEAD = 751
|
|
251
|
-
U_MODIFIER_LETTER_LOW_UP_ARROWHEAD = 752
|
|
252
|
-
U_MODIFIER_LETTER_LOW_LEFT_ARROWHEAD = 753
|
|
253
|
-
U_MODIFIER_LETTER_LOW_RIGHT_ARROWHEAD = 754
|
|
254
|
-
U_MODIFIER_LETTER_LOW_RING = 755
|
|
255
|
-
U_MODIFIER_LETTER_MIDDLE_GRAVE_ACCENT = 756
|
|
256
|
-
U_MODIFIER_LETTER_MIDDLE_DOUBLE_GRAVE_ACCENT = 757
|
|
257
|
-
U_MODIFIER_LETTER_MIDDLE_DOUBLE_ACUTE_ACCENT = 758
|
|
258
|
-
U_MODIFIER_LETTER_LOW_TILDE = 759
|
|
259
|
-
U_MODIFIER_LETTER_RAISED_COLON = 760
|
|
260
|
-
U_MODIFIER_LETTER_BEGIN_HIGH_TONE = 761
|
|
261
|
-
U_MODIFIER_LETTER_END_HIGH_TONE = 762
|
|
262
|
-
U_MODIFIER_LETTER_BEGIN_LOW_TONE = 763
|
|
263
|
-
U_MODIFIER_LETTER_END_LOW_TONE = 764
|
|
264
|
-
U_MODIFIER_LETTER_SHELF = 765
|
|
265
|
-
U_MODIFIER_LETTER_OPEN_SHELF = 766
|
|
266
|
-
U_MODIFIER_LETTER_LOW_LEFT_ARROW = 767
|
|
267
|
-
U_GREEK_LOWER_NUMERAL_SIGN = 885
|
|
268
|
-
U_GREEK_TONOS = 900
|
|
269
|
-
U_GREEK_DIALYTIKA_TONOS = 901
|
|
270
|
-
U_GREEK_KORONIS = 8125
|
|
271
|
-
U_GREEK_PSILI = 8127
|
|
272
|
-
U_GREEK_PERISPOMENI = 8128
|
|
273
|
-
U_GREEK_DIALYTIKA_AND_PERISPOMENI = 8129
|
|
274
|
-
U_GREEK_PSILI_AND_VARIA = 8141
|
|
275
|
-
U_GREEK_PSILI_AND_OXIA = 8142
|
|
276
|
-
U_GREEK_PSILI_AND_PERISPOMENI = 8143
|
|
277
|
-
U_GREEK_DASIA_AND_VARIA = 8157
|
|
278
|
-
U_GREEK_DASIA_AND_OXIA = 8158
|
|
279
|
-
U_GREEK_DASIA_AND_PERISPOMENI = 8159
|
|
280
|
-
U_GREEK_DIALYTIKA_AND_VARIA = 8173
|
|
281
|
-
U_GREEK_DIALYTIKA_AND_OXIA = 8174
|
|
282
|
-
U_GREEK_VARIA = 8175
|
|
283
|
-
U_GREEK_OXIA = 8189
|
|
284
|
-
U_GREEK_DASIA = 8190
|
|
285
|
-
U_IDEOGRAPHIC_FULL_STOP = 12290
|
|
286
|
-
U_LEFT_CORNER_BRACKET = 12300
|
|
287
|
-
U_RIGHT_CORNER_BRACKET = 12301
|
|
288
|
-
U_LEFT_BLACK_LENTICULAR_BRACKET = 12304
|
|
289
|
-
U_RIGHT_BLACK_LENTICULAR_BRACKET = 12305
|
|
290
|
-
U_OVERLINE = 8254
|
|
346
|
+
U_CIRCUMFLEX = 94,// U+005E CIRCUMFLEX
|
|
347
|
+
U_GRAVE_ACCENT = 96,// U+0060 GRAVE ACCENT
|
|
348
|
+
U_DIAERESIS = 168,// U+00A8 DIAERESIS
|
|
349
|
+
U_MACRON = 175,// U+00AF MACRON
|
|
350
|
+
U_ACUTE_ACCENT = 180,// U+00B4 ACUTE ACCENT
|
|
351
|
+
U_CEDILLA = 184,// U+00B8 CEDILLA
|
|
352
|
+
U_MODIFIER_LETTER_LEFT_ARROWHEAD = 706,// U+02C2 MODIFIER LETTER LEFT ARROWHEAD
|
|
353
|
+
U_MODIFIER_LETTER_RIGHT_ARROWHEAD = 707,// U+02C3 MODIFIER LETTER RIGHT ARROWHEAD
|
|
354
|
+
U_MODIFIER_LETTER_UP_ARROWHEAD = 708,// U+02C4 MODIFIER LETTER UP ARROWHEAD
|
|
355
|
+
U_MODIFIER_LETTER_DOWN_ARROWHEAD = 709,// U+02C5 MODIFIER LETTER DOWN ARROWHEAD
|
|
356
|
+
U_MODIFIER_LETTER_CENTRED_RIGHT_HALF_RING = 722,// U+02D2 MODIFIER LETTER CENTRED RIGHT HALF RING
|
|
357
|
+
U_MODIFIER_LETTER_CENTRED_LEFT_HALF_RING = 723,// U+02D3 MODIFIER LETTER CENTRED LEFT HALF RING
|
|
358
|
+
U_MODIFIER_LETTER_UP_TACK = 724,// U+02D4 MODIFIER LETTER UP TACK
|
|
359
|
+
U_MODIFIER_LETTER_DOWN_TACK = 725,// U+02D5 MODIFIER LETTER DOWN TACK
|
|
360
|
+
U_MODIFIER_LETTER_PLUS_SIGN = 726,// U+02D6 MODIFIER LETTER PLUS SIGN
|
|
361
|
+
U_MODIFIER_LETTER_MINUS_SIGN = 727,// U+02D7 MODIFIER LETTER MINUS SIGN
|
|
362
|
+
U_BREVE = 728,// U+02D8 BREVE
|
|
363
|
+
U_DOT_ABOVE = 729,// U+02D9 DOT ABOVE
|
|
364
|
+
U_RING_ABOVE = 730,// U+02DA RING ABOVE
|
|
365
|
+
U_OGONEK = 731,// U+02DB OGONEK
|
|
366
|
+
U_SMALL_TILDE = 732,// U+02DC SMALL TILDE
|
|
367
|
+
U_DOUBLE_ACUTE_ACCENT = 733,// U+02DD DOUBLE ACUTE ACCENT
|
|
368
|
+
U_MODIFIER_LETTER_RHOTIC_HOOK = 734,// U+02DE MODIFIER LETTER RHOTIC HOOK
|
|
369
|
+
U_MODIFIER_LETTER_CROSS_ACCENT = 735,// U+02DF MODIFIER LETTER CROSS ACCENT
|
|
370
|
+
U_MODIFIER_LETTER_EXTRA_HIGH_TONE_BAR = 741,// U+02E5 MODIFIER LETTER EXTRA-HIGH TONE BAR
|
|
371
|
+
U_MODIFIER_LETTER_HIGH_TONE_BAR = 742,// U+02E6 MODIFIER LETTER HIGH TONE BAR
|
|
372
|
+
U_MODIFIER_LETTER_MID_TONE_BAR = 743,// U+02E7 MODIFIER LETTER MID TONE BAR
|
|
373
|
+
U_MODIFIER_LETTER_LOW_TONE_BAR = 744,// U+02E8 MODIFIER LETTER LOW TONE BAR
|
|
374
|
+
U_MODIFIER_LETTER_EXTRA_LOW_TONE_BAR = 745,// U+02E9 MODIFIER LETTER EXTRA-LOW TONE BAR
|
|
375
|
+
U_MODIFIER_LETTER_YIN_DEPARTING_TONE_MARK = 746,// U+02EA MODIFIER LETTER YIN DEPARTING TONE MARK
|
|
376
|
+
U_MODIFIER_LETTER_YANG_DEPARTING_TONE_MARK = 747,// U+02EB MODIFIER LETTER YANG DEPARTING TONE MARK
|
|
377
|
+
U_MODIFIER_LETTER_UNASPIRATED = 749,// U+02ED MODIFIER LETTER UNASPIRATED
|
|
378
|
+
U_MODIFIER_LETTER_LOW_DOWN_ARROWHEAD = 751,// U+02EF MODIFIER LETTER LOW DOWN ARROWHEAD
|
|
379
|
+
U_MODIFIER_LETTER_LOW_UP_ARROWHEAD = 752,// U+02F0 MODIFIER LETTER LOW UP ARROWHEAD
|
|
380
|
+
U_MODIFIER_LETTER_LOW_LEFT_ARROWHEAD = 753,// U+02F1 MODIFIER LETTER LOW LEFT ARROWHEAD
|
|
381
|
+
U_MODIFIER_LETTER_LOW_RIGHT_ARROWHEAD = 754,// U+02F2 MODIFIER LETTER LOW RIGHT ARROWHEAD
|
|
382
|
+
U_MODIFIER_LETTER_LOW_RING = 755,// U+02F3 MODIFIER LETTER LOW RING
|
|
383
|
+
U_MODIFIER_LETTER_MIDDLE_GRAVE_ACCENT = 756,// U+02F4 MODIFIER LETTER MIDDLE GRAVE ACCENT
|
|
384
|
+
U_MODIFIER_LETTER_MIDDLE_DOUBLE_GRAVE_ACCENT = 757,// U+02F5 MODIFIER LETTER MIDDLE DOUBLE GRAVE ACCENT
|
|
385
|
+
U_MODIFIER_LETTER_MIDDLE_DOUBLE_ACUTE_ACCENT = 758,// U+02F6 MODIFIER LETTER MIDDLE DOUBLE ACUTE ACCENT
|
|
386
|
+
U_MODIFIER_LETTER_LOW_TILDE = 759,// U+02F7 MODIFIER LETTER LOW TILDE
|
|
387
|
+
U_MODIFIER_LETTER_RAISED_COLON = 760,// U+02F8 MODIFIER LETTER RAISED COLON
|
|
388
|
+
U_MODIFIER_LETTER_BEGIN_HIGH_TONE = 761,// U+02F9 MODIFIER LETTER BEGIN HIGH TONE
|
|
389
|
+
U_MODIFIER_LETTER_END_HIGH_TONE = 762,// U+02FA MODIFIER LETTER END HIGH TONE
|
|
390
|
+
U_MODIFIER_LETTER_BEGIN_LOW_TONE = 763,// U+02FB MODIFIER LETTER BEGIN LOW TONE
|
|
391
|
+
U_MODIFIER_LETTER_END_LOW_TONE = 764,// U+02FC MODIFIER LETTER END LOW TONE
|
|
392
|
+
U_MODIFIER_LETTER_SHELF = 765,// U+02FD MODIFIER LETTER SHELF
|
|
393
|
+
U_MODIFIER_LETTER_OPEN_SHELF = 766,// U+02FE MODIFIER LETTER OPEN SHELF
|
|
394
|
+
U_MODIFIER_LETTER_LOW_LEFT_ARROW = 767,// U+02FF MODIFIER LETTER LOW LEFT ARROW
|
|
395
|
+
U_GREEK_LOWER_NUMERAL_SIGN = 885,// U+0375 GREEK LOWER NUMERAL SIGN
|
|
396
|
+
U_GREEK_TONOS = 900,// U+0384 GREEK TONOS
|
|
397
|
+
U_GREEK_DIALYTIKA_TONOS = 901,// U+0385 GREEK DIALYTIKA TONOS
|
|
398
|
+
U_GREEK_KORONIS = 8125,// U+1FBD GREEK KORONIS
|
|
399
|
+
U_GREEK_PSILI = 8127,// U+1FBF GREEK PSILI
|
|
400
|
+
U_GREEK_PERISPOMENI = 8128,// U+1FC0 GREEK PERISPOMENI
|
|
401
|
+
U_GREEK_DIALYTIKA_AND_PERISPOMENI = 8129,// U+1FC1 GREEK DIALYTIKA AND PERISPOMENI
|
|
402
|
+
U_GREEK_PSILI_AND_VARIA = 8141,// U+1FCD GREEK PSILI AND VARIA
|
|
403
|
+
U_GREEK_PSILI_AND_OXIA = 8142,// U+1FCE GREEK PSILI AND OXIA
|
|
404
|
+
U_GREEK_PSILI_AND_PERISPOMENI = 8143,// U+1FCF GREEK PSILI AND PERISPOMENI
|
|
405
|
+
U_GREEK_DASIA_AND_VARIA = 8157,// U+1FDD GREEK DASIA AND VARIA
|
|
406
|
+
U_GREEK_DASIA_AND_OXIA = 8158,// U+1FDE GREEK DASIA AND OXIA
|
|
407
|
+
U_GREEK_DASIA_AND_PERISPOMENI = 8159,// U+1FDF GREEK DASIA AND PERISPOMENI
|
|
408
|
+
U_GREEK_DIALYTIKA_AND_VARIA = 8173,// U+1FED GREEK DIALYTIKA AND VARIA
|
|
409
|
+
U_GREEK_DIALYTIKA_AND_OXIA = 8174,// U+1FEE GREEK DIALYTIKA AND OXIA
|
|
410
|
+
U_GREEK_VARIA = 8175,// U+1FEF GREEK VARIA
|
|
411
|
+
U_GREEK_OXIA = 8189,// U+1FFD GREEK OXIA
|
|
412
|
+
U_GREEK_DASIA = 8190,// U+1FFE GREEK DASIA
|
|
413
|
+
U_IDEOGRAPHIC_FULL_STOP = 12290,// U+3002 IDEOGRAPHIC FULL STOP
|
|
414
|
+
U_LEFT_CORNER_BRACKET = 12300,// U+300C LEFT CORNER BRACKET
|
|
415
|
+
U_RIGHT_CORNER_BRACKET = 12301,// U+300D RIGHT CORNER BRACKET
|
|
416
|
+
U_LEFT_BLACK_LENTICULAR_BRACKET = 12304,// U+3010 LEFT BLACK LENTICULAR BRACKET
|
|
417
|
+
U_RIGHT_BLACK_LENTICULAR_BRACKET = 12305,// U+3011 RIGHT BLACK LENTICULAR BRACKET
|
|
418
|
+
U_OVERLINE = 8254,// Unicode Character 'OVERLINE'
|
|
419
|
+
/**
|
|
420
|
+
* UTF-8 BOM
|
|
421
|
+
* Unicode Character 'ZERO WIDTH NO-BREAK SPACE' (U+FEFF)
|
|
422
|
+
* http://www.fileformat.info/info/unicode/char/feff/index.htm
|
|
423
|
+
*/
|
|
291
424
|
UTF8_BOM = 65279,
|
|
292
|
-
U_FULLWIDTH_SEMICOLON = 65307
|
|
425
|
+
U_FULLWIDTH_SEMICOLON = 65307,// U+FF1B FULLWIDTH SEMICOLON
|
|
293
426
|
U_FULLWIDTH_COMMA = 65292
|
|
294
427
|
}
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
import { ThemeIcon } from "./themables.js";
|
|
2
|
+
/**
|
|
3
|
+
* Only to be used by the iconRegistry.
|
|
4
|
+
*/
|
|
2
5
|
export declare function getAllCodicons(): ThemeIcon[];
|
|
6
|
+
/**
|
|
7
|
+
* Derived icons, that could become separate icons.
|
|
8
|
+
* These mappings should be moved into the mapping file in the vscode-codicons repo at some point.
|
|
9
|
+
*/
|
|
3
10
|
export declare const codiconsDerived: {
|
|
4
11
|
readonly dialogError: ThemeIcon;
|
|
5
12
|
readonly dialogWarning: ThemeIcon;
|
|
@@ -30,6 +37,13 @@ export declare const codiconsDerived: {
|
|
|
30
37
|
readonly lightbulbSparkleAutofix: ThemeIcon;
|
|
31
38
|
readonly debugBreakpointPending: ThemeIcon;
|
|
32
39
|
};
|
|
40
|
+
/**
|
|
41
|
+
* The Codicon library is a set of default icons that are built-in in VS Code.
|
|
42
|
+
*
|
|
43
|
+
* In the product (outside of base) Codicons should only be used as defaults. In order to have all icons in VS Code
|
|
44
|
+
* themeable, component should define new, UI component specific icons using `iconRegistry.registerIcon`.
|
|
45
|
+
* In that call a Codicon can be named as default.
|
|
46
|
+
*/
|
|
33
47
|
export declare const Codicon: {
|
|
34
48
|
readonly dialogError: ThemeIcon;
|
|
35
49
|
readonly dialogWarning: ThemeIcon;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { ThemeIcon } from "./themables.js";
|
|
2
2
|
export declare function register(id: string, fontCharacter: number | string): ThemeIcon;
|
|
3
|
+
/**
|
|
4
|
+
* Only to be used by the iconRegistry.
|
|
5
|
+
*/
|
|
3
6
|
export declare function getCodiconFontCharacters(): {
|
|
4
7
|
[id: string]: number;
|
|
5
8
|
};
|
|
@@ -1,5 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* An interface for a JavaScript object that
|
|
3
|
+
* acts a dictionary. The keys are strings.
|
|
4
|
+
*/
|
|
1
5
|
export type IStringDictionary<V> = Record<string, V>;
|
|
6
|
+
/**
|
|
7
|
+
* An interface for a JavaScript object that
|
|
8
|
+
* acts a dictionary. The keys are numbers.
|
|
9
|
+
*/
|
|
2
10
|
export type INumberDictionary<V> = Record<number, V>;
|
|
11
|
+
/**
|
|
12
|
+
* Groups the collection into a dictionary based on the provided
|
|
13
|
+
* group function.
|
|
14
|
+
*/
|
|
3
15
|
export declare function groupBy<K extends string | number | symbol, V>(data: V[], groupFn: (element: V) => K): Record<K, V[]>;
|
|
4
16
|
export declare function groupByMap<K, V>(data: V[], groupFn: (element: V) => K): Map<K, V[]>;
|
|
5
17
|
export declare function diffSets<T>(before: ReadonlySet<T>, after: ReadonlySet<T>): {
|
|
@@ -10,6 +22,13 @@ export declare function diffMaps<K, V>(before: Map<K, V>, after: Map<K, V>): {
|
|
|
10
22
|
removed: V[];
|
|
11
23
|
added: V[];
|
|
12
24
|
};
|
|
25
|
+
/**
|
|
26
|
+
* Computes the intersection of two sets.
|
|
27
|
+
*
|
|
28
|
+
* @param setA - The first set.
|
|
29
|
+
* @param setB - The second iterable.
|
|
30
|
+
* @returns A new set containing the elements that are in both `setA` and `setB`.
|
|
31
|
+
*/
|
|
13
32
|
export declare function intersection<T>(setA: Set<T>, setB: Iterable<T>): Set<T>;
|
|
14
33
|
export declare class SetWithKey<T> implements Set<T> {
|
|
15
34
|
private toKey;
|