We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4104c8 commit 27426beCopy full SHA for 27426be
src/compiler/types.ts
@@ -232,6 +232,8 @@ export const enum SyntaxKind {
232
// Signature elements
233
TypeParameter,
234
ParameterDeclaration,
235
+ /** @deprecated Use SyntaxKind.ParameterDeclaration */
236
+ Parameter = ParameterDeclaration,
237
Decorator,
238
// TypeMember
239
PropertySignature,
tests/baselines/reference/api/typescript.d.ts
@@ -3755,6 +3755,8 @@ declare namespace ts {
3755
ComputedPropertyName = 167,
3756
TypeParameter = 168,
3757
ParameterDeclaration = 169,
3758
3759
+ Parameter = 169,
3760
Decorator = 170,
3761
PropertySignature = 171,
3762
PropertyDeclaration = 172,
0 commit comments