We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b8ea75 commit 9ef6d7aCopy full SHA for 9ef6d7a
src/compiler/types.ts
@@ -231,6 +231,8 @@ export const enum SyntaxKind {
231
// Signature elements
232
TypeParameter,
233
ParameterDeclaration,
234
+ /** @deprecated Use SyntaxKind.ParameterDeclaration */
235
+ Parameter = ParameterDeclaration,
236
Decorator,
237
// TypeMember
238
PropertySignature,
tests/baselines/reference/api/typescript.d.ts
@@ -3793,6 +3793,8 @@ declare namespace ts {
3793
ComputedPropertyName = 167,
3794
TypeParameter = 168,
3795
ParameterDeclaration = 169,
3796
3797
+ Parameter = 169,
3798
Decorator = 170,
3799
PropertySignature = 171,
3800
PropertyDeclaration = 172,
0 commit comments