TS6196TS6196 — Declared But Never Used (Parameter)
A parameter is declared but its value is never read within the function body.
TS2688TypeScript cannot find the type definition file specified in types or typeRoots.
A type definition package listed in tsconfig types array is not installed, or the typeRoots directory does not contain the expected definitions.
Install the @types package: npm install @types/package. Check the types array in tsconfig.json. Verify typeRoots points to the correct directory.
TS6196A parameter is declared but its value is never read within the function body.
TS2551TypeScript cannot find the property but suggests a similar name that might be what you intended.
TS2307TypeScript cannot find the module specified in an import or require statement.
TS2740An object type is missing required properties that are expected by the target type.
TS2590The resulting type expression creates a union with too many members for TypeScript to represent.
TS2769None of the function overload signatures match the provided arguments.