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 ca49040 commit d5f4d4bCopy full SHA for d5f4d4b
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
@@ -4350,6 +4350,8 @@ declare namespace ts {
4350
ComputedPropertyName = 167,
4351
TypeParameter = 168,
4352
ParameterDeclaration = 169,
4353
4354
+ Parameter = 169,
4355
Decorator = 170,
4356
PropertySignature = 171,
4357
PropertyDeclaration = 172,
0 commit comments