File tree 3 files changed +3
-3
lines changed
tests/baselines/reference/api
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3875,7 +3875,7 @@ namespace ts {
3875
3875
}
3876
3876
3877
3877
export interface Signature {
3878
- declaration : SignatureDeclaration ; // Originating declaration
3878
+ declaration ? : SignatureDeclaration ; // Originating declaration
3879
3879
typeParameters ?: TypeParameter [ ] ; // Type parameters (undefined if non-generic)
3880
3880
parameters : Symbol [ ] ; // Parameters
3881
3881
/* @internal */
Original file line number Diff line number Diff line change @@ -2223,7 +2223,7 @@ declare namespace ts {
2223
2223
Construct = 1 ,
2224
2224
}
2225
2225
interface Signature {
2226
- declaration : SignatureDeclaration ;
2226
+ declaration ? : SignatureDeclaration ;
2227
2227
typeParameters ?: TypeParameter [ ] ;
2228
2228
parameters : Symbol [ ] ;
2229
2229
}
Original file line number Diff line number Diff line change @@ -2223,7 +2223,7 @@ declare namespace ts {
2223
2223
Construct = 1 ,
2224
2224
}
2225
2225
interface Signature {
2226
- declaration : SignatureDeclaration ;
2226
+ declaration ? : SignatureDeclaration ;
2227
2227
typeParameters ?: TypeParameter [ ] ;
2228
2228
parameters : Symbol [ ] ;
2229
2229
}
You can’t perform that action at this time.
0 commit comments