File tree 2 files changed +14
-14
lines changed
tests/baselines/reference/api
2 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -11781,20 +11781,20 @@ declare namespace ts {
11781
11781
declare namespace ts {
11782
11782
interface Node {
11783
11783
/**
11784
- * @deprecated `decorators` has been merged with `modifiers` on the declarations that support decorators .
11785
- * To test whether a `Node` can legally have decorators, use the `ts.canHaveDecorators()` function. To read the
11786
- * decorators of a `Node` that can legally have decorators, use the `ts.getDecorators()` function .
11784
+ * @deprecated `decorators` has been removed from `Node` and merged with `modifiers` on the `Node` subtypes that support them .
11785
+ * Use `ts.canHaveDecorators()` to test whether a `Node` can have decorators.
11786
+ * Use `ts.getDecorators()` to get the decorators of a `Node` .
11787
11787
*
11788
11788
* For example:
11789
11789
* ```ts
11790
11790
* const decorators = ts.canHaveDecorators(node) ? ts.getDecorators(node) : undefined;
11791
11791
* ```
11792
11792
*/
11793
- readonly decorators: never ;
11793
+ readonly decorators?: undefined ;
11794
11794
/**
11795
- * @deprecated `modifiers` has been removed from `Node` and moved to the specific `Node` subtypes that support them.
11796
- * To test whether a `Node` can legally have modifiers, use the `ts.canHaveModifiers()` function. To read the modifiers
11797
- * of a `Node` that can legally have modifiers, use the `ts.getModifiers()` function .
11795
+ * @deprecated `modifiers` has been removed from `Node` and moved to the `Node` subtypes that support them.
11796
+ * Use `ts.canHaveModifiers()` to test whether a `Node` can have modifiers.
11797
+ * Use `ts.getModifiers()` to get the modifiers of a `Node` .
11798
11798
*
11799
11799
* For example:
11800
11800
* ```ts
Original file line number Diff line number Diff line change @@ -7913,20 +7913,20 @@ declare namespace ts {
7913
7913
declare namespace ts {
7914
7914
interface Node {
7915
7915
/**
7916
- * @deprecated `decorators` has been merged with `modifiers` on the declarations that support decorators .
7917
- * To test whether a `Node` can legally have decorators, use the `ts.canHaveDecorators()` function. To read the
7918
- * decorators of a `Node` that can legally have decorators, use the `ts.getDecorators()` function .
7916
+ * @deprecated `decorators` has been removed from `Node` and merged with `modifiers` on the `Node` subtypes that support them .
7917
+ * Use `ts.canHaveDecorators()` to test whether a `Node` can have decorators.
7918
+ * Use `ts.getDecorators()` to get the decorators of a `Node` .
7919
7919
*
7920
7920
* For example:
7921
7921
* ```ts
7922
7922
* const decorators = ts.canHaveDecorators(node) ? ts.getDecorators(node) : undefined;
7923
7923
* ```
7924
7924
*/
7925
- readonly decorators : never ;
7925
+ readonly decorators ?: undefined ;
7926
7926
/**
7927
- * @deprecated `modifiers` has been removed from `Node` and moved to the specific `Node` subtypes that support them.
7928
- * To test whether a `Node` can legally have modifiers, use the `ts.canHaveModifiers()` function. To read the modifiers
7929
- * of a `Node` that can legally have modifiers, use the `ts.getModifiers()` function .
7927
+ * @deprecated `modifiers` has been removed from `Node` and moved to the `Node` subtypes that support them.
7928
+ * Use `ts.canHaveModifiers()` to test whether a `Node` can have modifiers.
7929
+ * Use `ts.getModifiers()` to get the modifiers of a `Node` .
7930
7930
*
7931
7931
* For example:
7932
7932
* ```ts
You can’t perform that action at this time.
0 commit comments