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 034bf51 commit a263f22Copy full SHA for a263f22
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
@@ -3757,6 +3757,8 @@ declare namespace ts {
3757
ComputedPropertyName = 167,
3758
TypeParameter = 168,
3759
ParameterDeclaration = 169,
3760
3761
+ Parameter = 169,
3762
Decorator = 170,
3763
PropertySignature = 171,
3764
PropertyDeclaration = 172,
0 commit comments