TS7031TS7031 — Binding Element Implicitly Has Any Type
A destructured binding element has an implicit any type.
TS1046An await expression or other top-level construct requires the file to be a module.
The code contains syntax that is only valid at the module level, but the file is not recognized as a module. A file must have at least one import or export to be treated as a module.
Add an export statement to make the file a module. Add an import if the file depends on external modules. Use export {} as a minimal way to mark a file as a module.
TS7031A destructured binding element has an implicit any type.
TS1219Decorators require the experimentalDecorators compiler option to be enabled.
TS2571You are trying to use a value of type unknown without first narrowing its type.
TS2554The number of arguments passed to a function does not match the number of required parameters.
TS18046A value of type unknown is used in a position that requires a more specific type.
TS2305The specified export does not exist in the referenced module.