We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4745df8 commit e5b980eCopy full SHA for e5b980e
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
@@ -3792,6 +3792,8 @@ declare namespace ts {
3792
ComputedPropertyName = 167,
3793
TypeParameter = 168,
3794
ParameterDeclaration = 169,
3795
3796
+ Parameter = 169,
3797
Decorator = 170,
3798
PropertySignature = 171,
3799
PropertyDeclaration = 172,
0 commit comments