File tree 2 files changed +8
-0
lines changed
tests/baselines/reference/api
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -621,6 +621,9 @@ declare namespace ts {
621
621
type ?: TypeNode ;
622
622
initializer ?: Expression ;
623
623
}
624
+ interface PrivatePropertyDeclaration extends PropertyDeclaration {
625
+ name : PrivateName ;
626
+ }
624
627
interface ObjectLiteralElement extends NamedDeclaration {
625
628
_objectLiteralBrandBrand : any ;
626
629
name ?: PropertyName ;
@@ -3475,6 +3478,7 @@ declare namespace ts {
3475
3478
function isModifier ( node : Node ) : node is Modifier ;
3476
3479
function isEntityName ( node : Node ) : node is EntityName ;
3477
3480
function isPropertyName ( node : Node ) : node is PropertyName ;
3481
+ function isPrivatePropertyDeclaration ( node : Node ) : node is PrivatePropertyDeclaration ;
3478
3482
function isBindingName ( node : Node ) : node is BindingName ;
3479
3483
function isFunctionLike ( node : Node ) : node is SignatureDeclaration ;
3480
3484
function isClassElement ( node : Node ) : node is ClassElement ;
Original file line number Diff line number Diff line change @@ -621,6 +621,9 @@ declare namespace ts {
621
621
type ?: TypeNode ;
622
622
initializer ?: Expression ;
623
623
}
624
+ interface PrivatePropertyDeclaration extends PropertyDeclaration {
625
+ name : PrivateName ;
626
+ }
624
627
interface ObjectLiteralElement extends NamedDeclaration {
625
628
_objectLiteralBrandBrand : any ;
626
629
name ?: PropertyName ;
@@ -3475,6 +3478,7 @@ declare namespace ts {
3475
3478
function isModifier ( node : Node ) : node is Modifier ;
3476
3479
function isEntityName ( node : Node ) : node is EntityName ;
3477
3480
function isPropertyName ( node : Node ) : node is PropertyName ;
3481
+ function isPrivatePropertyDeclaration ( node : Node ) : node is PrivatePropertyDeclaration ;
3478
3482
function isBindingName ( node : Node ) : node is BindingName ;
3479
3483
function isFunctionLike ( node : Node ) : node is SignatureDeclaration ;
3480
3484
function isClassElement ( node : Node ) : node is ClassElement ;
You can’t perform that action at this time.
0 commit comments