mattpocock / ts-error-translator

VSCode extension to turn TypeScript errors into plain English
https://ts-error-translator.vercel.app
2.36k stars 90 forks source link

Translation request for 2790 #231

Open mlrcbsousa opened 10 months ago

mlrcbsousa commented 10 months ago

Error Text

The operand of a 'delete' operator must be optional.

Supporting Information

Please provide other information which led to this error, and any specific questions you have about it:

FrameMuse commented 9 months ago

The operand of a 'delete' operator must be optional.

It means that a property you're trying to delete must be optional.

interface Props {
  deletable?: unknown
  undeletable: unknown
}