Skip to content

Commit

Permalink
chore(gh-action-bot): adding new diagnostics
Browse files Browse the repository at this point in the history
  • Loading branch information
chadhietala authored and github-actions[bot] committed Oct 31, 2023
1 parent 00c957e commit 1286ec5
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion packages/codefixes/src/diagnosticMessages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3619,7 +3619,7 @@
"category": "Error",
"code": 2839
},
"An interface cannot extend a primitive type like '{0}'; an interface can only extend named types and classes": {
"An interface cannot extend a primitive type like '{0}'. It can only extend other named object types.": {
"category": "Error",
"code": 2840
},
Expand Down Expand Up @@ -3703,6 +3703,14 @@
"category": "Error",
"code": 2862
},
"A class cannot extend a primitive type like '{0}'. Classes can only extend constructable values.": {
"category": "Error",
"code": 2863
},
"A class cannot implement a primitive type like '{0}'. It can only implement other named object types.": {
"category": "Error",
"code": 2864
},

"Import declaration '{0}' is using private name '{1}'.": {
"category": "Error",
Expand Down

0 comments on commit 1286ec5

Please sign in to comment.