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 2a485b5 commit 719a224Copy full SHA for 719a224
src/compiler/types.ts
@@ -233,6 +233,8 @@ export const enum SyntaxKind {
233
// Signature elements
234
TypeParameter,
235
ParameterDeclaration,
236
+ /** @deprecated Use SyntaxKind.ParameterDeclaration */
237
+ Parameter = ParameterDeclaration,
238
Decorator,
239
// TypeMember
240
PropertySignature,
tests/baselines/reference/api/typescript.d.ts
@@ -4274,6 +4274,8 @@ declare namespace ts {
4274
ComputedPropertyName = 167,
4275
TypeParameter = 168,
4276
ParameterDeclaration = 169,
4277
4278
+ Parameter = 169,
4279
Decorator = 170,
4280
PropertySignature = 171,
4281
PropertyDeclaration = 172,
0 commit comments