@@ -1806,17 +1806,6 @@ namespace ts {
1806
1806
questionDotToken : QuestionDotToken ;
1807
1807
}
1808
1808
1809
- /* @internal */
1810
- export interface ValidPropertyAccessChainLink extends PropertyAccessChain {
1811
- questionDotToken : undefined ;
1812
- expression : ValidOptionalChain ;
1813
- }
1814
-
1815
- /* @internal */
1816
- export type ValidPropertyAccessChain =
1817
- | PropertyAccessChainRoot
1818
- | ValidPropertyAccessChainLink ;
1819
-
1820
1809
export interface SuperPropertyAccessExpression extends PropertyAccessExpression {
1821
1810
expression : SuperExpression ;
1822
1811
}
@@ -1843,17 +1832,6 @@ namespace ts {
1843
1832
questionDotToken : QuestionDotToken ;
1844
1833
}
1845
1834
1846
- /* @internal */
1847
- export interface ValidElementAccessChainLink extends ElementAccessChain {
1848
- questionDotToken : undefined ;
1849
- expression : ValidOptionalChain ;
1850
- }
1851
-
1852
- /* @internal */
1853
- export type ValidElementAccessChain =
1854
- | ElementAccessChainRoot
1855
- | ValidElementAccessChainLink ;
1856
-
1857
1835
export interface SuperElementAccessExpression extends ElementAccessExpression {
1858
1836
expression : SuperExpression ;
1859
1837
}
@@ -1878,17 +1856,6 @@ namespace ts {
1878
1856
questionDotToken : QuestionDotToken ;
1879
1857
}
1880
1858
1881
- /* @internal */
1882
- export interface ValidCallChainLink extends CallChain {
1883
- questionDotToken : undefined ;
1884
- expression : ValidOptionalChain ;
1885
- }
1886
-
1887
- /* @internal */
1888
- export type ValidCallChain =
1889
- | CallChainRoot
1890
- | ValidCallChainLink ;
1891
-
1892
1859
export type OptionalChain =
1893
1860
| PropertyAccessChain
1894
1861
| ElementAccessChain
@@ -1902,13 +1869,6 @@ namespace ts {
1902
1869
| CallChainRoot
1903
1870
;
1904
1871
1905
- /* @internal */
1906
- export type ValidOptionalChain =
1907
- | ValidPropertyAccessChain
1908
- | ValidElementAccessChain
1909
- | ValidCallChain
1910
- ;
1911
-
1912
1872
/** @internal */
1913
1873
export type BindableObjectDefinePropertyCall = CallExpression & { arguments : { 0 : EntityNameExpression , 1 : StringLiteralLike | NumericLiteral , 2 : ObjectLiteralExpression } } ;
1914
1874
0 commit comments