@@ -990,6 +990,7 @@ class EditorAccessibilitySupport extends BaseEditorOption<EditorOption.accessibi
990990
991991/**
992992 * The kind of animation in which the editor's cursor should be rendered.
993+ * @internal
993994 */
994995export const enum TextEditorCursorBlinkingStyle {
995996 /**
@@ -1034,6 +1035,7 @@ function _cursorBlinkingStyleFromString(cursorBlinkingStyle: 'blink' | 'smooth'
10341035
10351036/**
10361037 * The style in which the editor's cursor should be rendered.
1038+ * @internal
10371039 */
10381040export enum TextEditorCursorStyle {
10391041 /**
@@ -1159,6 +1161,9 @@ export interface IEditorFindOptions {
11591161 globalFindClipboard ?: boolean ;
11601162}
11611163
1164+ /**
1165+ * @internal
1166+ */
11621167export type EditorFindOptions = Readonly < Required < IEditorFindOptions > > ;
11631168
11641169class EditorFind extends BaseEditorOption < EditorOption . find , EditorFindOptions > {
@@ -1346,6 +1351,9 @@ export interface IGotoLocationOptions {
13461351 alternativeReferenceCommand ?: string ;
13471352}
13481353
1354+ /**
1355+ * @internal
1356+ */
13491357export type GoToLocationOptions = Readonly < Required < IGotoLocationOptions > > ;
13501358
13511359class EditorGoToLocation extends BaseEditorOption < EditorOption . gotoLocation , GoToLocationOptions > {
@@ -1475,6 +1483,9 @@ export interface IEditorHoverOptions {
14751483 sticky ?: boolean ;
14761484}
14771485
1486+ /**
1487+ * @internal
1488+ */
14781489export type EditorHoverOptions = Readonly < Required < IEditorHoverOptions > > ;
14791490
14801491class EditorHover extends BaseEditorOption < EditorOption . hover , EditorHoverOptions > {
@@ -1851,6 +1862,9 @@ export interface IEditorLightbulbOptions {
18511862 enabled ?: boolean ;
18521863}
18531864
1865+ /**
1866+ * @internal
1867+ */
18541868export type EditorLightbulbOptions = Readonly < Required < IEditorLightbulbOptions > > ;
18551869
18561870class EditorLightbulb extends BaseEditorOption < EditorOption . lightbulb , EditorLightbulbOptions > {
@@ -1942,6 +1956,9 @@ export interface IEditorMinimapOptions {
19421956 scale ?: number ;
19431957}
19441958
1959+ /**
1960+ * @internal
1961+ */
19451962export type EditorMinimapOptions = Readonly < Required < IEditorMinimapOptions > > ;
19461963
19471964class EditorMinimap extends BaseEditorOption < EditorOption . minimap , EditorMinimapOptions > {
@@ -2043,6 +2060,9 @@ export interface IEditorParameterHintOptions {
20432060 cycle ?: boolean ;
20442061}
20452062
2063+ /**
2064+ * @internal
2065+ */
20462066export type InternalParameterHintOptions = Readonly < Required < IEditorParameterHintOptions > > ;
20472067
20482068class EditorParameterHints extends BaseEditorOption < EditorOption . parameterHints , InternalParameterHintOptions > {
@@ -2109,6 +2129,9 @@ export interface IQuickSuggestionsOptions {
21092129 strings : boolean ;
21102130}
21112131
2132+ /**
2133+ * @internal
2134+ */
21122135export type ValidQuickSuggestionsOptions = boolean | Readonly < Required < IQuickSuggestionsOptions > > ;
21132136
21142137class EditorQuickSuggestions extends BaseEditorOption < EditorOption . quickSuggestions , ValidQuickSuggestionsOptions > {
@@ -2185,6 +2208,9 @@ class EditorQuickSuggestions extends BaseEditorOption<EditorOption.quickSuggesti
21852208
21862209export type LineNumbersType = 'on' | 'off' | 'relative' | 'interval' | ( ( lineNumber : number ) => string ) ;
21872210
2211+ /**
2212+ * @internal
2213+ */
21882214export const enum RenderLineNumbersType {
21892215 Off = 0 ,
21902216 On = 1 ,
@@ -2193,6 +2219,9 @@ export const enum RenderLineNumbersType {
21932219 Custom = 4
21942220}
21952221
2222+ /**
2223+ * @internal
2224+ */
21962225export interface InternalEditorRenderLineNumbersOptions {
21972226 readonly renderType : RenderLineNumbersType ;
21982227 readonly renderFn : ( ( lineNumber : number ) => string ) | null ;
@@ -2348,6 +2377,9 @@ export interface IEditorScrollbarOptions {
23482377 horizontalSliderSize ?: number ;
23492378}
23502379
2380+ /**
2381+ * @internal
2382+ */
23512383export interface InternalEditorScrollbarOptions {
23522384 readonly arrowSize : number ;
23532385 readonly vertical : ScrollbarVisibility ;
@@ -2562,6 +2594,9 @@ export interface ISuggestOptions {
25622594 showSnippets ?: boolean ;
25632595}
25642596
2597+ /**
2598+ * @internal
2599+ */
25652600export type InternalSuggestOptions = Readonly < Required < ISuggestOptions > > ;
25662601
25672602class EditorSuggest extends BaseEditorOption < EditorOption . suggest , InternalSuggestOptions > {
@@ -2855,6 +2890,7 @@ class EditorTabFocusMode extends ComputedEditorOption<EditorOption.tabFocusMode,
28552890
28562891/**
28572892 * Describes how to indent wrapped lines.
2893+ * @internal
28582894 */
28592895export const enum WrappingIndent {
28602896 /**
@@ -2888,6 +2924,9 @@ function _wrappingIndentFromString(wrappingIndent: 'none' | 'same' | 'indent' |
28882924
28892925//#region wrappingInfo
28902926
2927+ /**
2928+ * @internal
2929+ */
28912930export interface EditorWrappingInfo {
28922931 readonly isDominatedByLongLines : boolean ;
28932932 readonly isWordWrapMinified : boolean ;
0 commit comments