@@ -3846,9 +3846,6 @@ declare namespace ts {
38463846 send(msg: protocol.Message): void;
38473847 protected writeMessage(msg: protocol.Message): void;
38483848 event<T extends object>(body: T, eventName: string): void;
3849- /** @deprecated */
3850- output(info: any, cmdName: string, reqSeq?: number, errorMsg?: string): void;
3851- private doOutput;
38523849 private semanticCheck;
38533850 private syntacticCheck;
38543851 private suggestionCheck;
@@ -4568,10 +4565,6 @@ declare namespace ts {
45684565 type AssertKeyword = KeywordToken<SyntaxKind.AssertKeyword>;
45694566 type AwaitKeyword = KeywordToken<SyntaxKind.AwaitKeyword>;
45704567 type CaseKeyword = KeywordToken<SyntaxKind.CaseKeyword>;
4571- /** @deprecated Use `AwaitKeyword` instead. */
4572- type AwaitKeywordToken = AwaitKeyword;
4573- /** @deprecated Use `AssertsKeyword` instead. */
4574- type AssertsToken = AssertsKeyword;
45754568 interface ModifierToken<TKind extends ModifierSyntaxKind> extends KeywordToken<TKind> {
45764569 }
45774570 type AbstractKeyword = ModifierToken<SyntaxKind.AbstractKeyword>;
@@ -4589,8 +4582,6 @@ declare namespace ts {
45894582 type OutKeyword = ModifierToken<SyntaxKind.OutKeyword>;
45904583 type OverrideKeyword = ModifierToken<SyntaxKind.OverrideKeyword>;
45914584 type StaticKeyword = ModifierToken<SyntaxKind.StaticKeyword>;
4592- /** @deprecated Use `ReadonlyKeyword` instead. */
4593- type ReadonlyToken = ReadonlyKeyword;
45944585 type Modifier = AbstractKeyword | AccessorKeyword | AsyncKeyword | ConstKeyword | DeclareKeyword | DefaultKeyword | ExportKeyword | InKeyword | PrivateKeyword | ProtectedKeyword | PublicKeyword | OutKeyword | OverrideKeyword | ReadonlyKeyword | StaticKeyword;
45954586 type ModifierLike = Modifier | Decorator;
45964587 type AccessibilityModifier = PublicKeyword | PrivateKeyword | ProtectedKeyword;
@@ -6434,8 +6425,6 @@ declare namespace ts {
64346425 OmitThisParameter = 33554432,
64356426 AllowThisInObjectLiteral = 32768,
64366427 AllowQualifiedNameInPlaceOfIdentifier = 65536,
6437- /** @deprecated AllowQualifedNameInPlaceOfIdentifier. Use AllowQualifiedNameInPlaceOfIdentifier instead. */
6438- AllowQualifedNameInPlaceOfIdentifier = 65536,
64396428 AllowAnonymousIdentifier = 131072,
64406429 AllowEmptyUnionOrIntersection = 262144,
64416430 AllowEmptyTuple = 524288,
@@ -6470,7 +6459,6 @@ declare namespace ts {
64706459 InElementType = 2097152,
64716460 InFirstTypeArgument = 4194304,
64726461 InTypeAlias = 8388608,
6473- /** @deprecated */ WriteOwnNameForAnyLike = 0,
64746462 NodeBuilderFlagsMask = 848330091
64756463 }
64766464 enum SymbolFormatFlags {
@@ -6926,8 +6914,6 @@ declare namespace ts {
69266914 PriorityImpliesCombination = 416,
69276915 Circularity = -1
69286916 }
6929- /** @deprecated Use FileExtensionInfo instead. */
6930- type JsFileExtensionInfo = FileExtensionInfo;
69316917 interface FileExtensionInfo {
69326918 extension: string;
69336919 isMixedContent: boolean;
0 commit comments