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 f11ab3e commit 37d6d9eCopy full SHA for 37d6d9e
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
@@ -3795,6 +3795,8 @@ declare namespace ts {
3795
ComputedPropertyName = 167,
3796
TypeParameter = 168,
3797
ParameterDeclaration = 169,
3798
3799
+ Parameter = 169,
3800
Decorator = 170,
3801
PropertySignature = 171,
3802
PropertyDeclaration = 172,
0 commit comments