TS7047
TypeScriptERRORNotableStrictHIGH confidence

Rest parameter 'X' implicitly has an 'any[]' type, but a better type may be i...

Production Risk

Build will fail; resolve before shipping.

What this means

A strict mode error (TS7047): Rest parameter 'X' implicitly has an 'any[]' type, but a better type may be inferred from usage.. This diagnostic is emitted by the TypeScript compiler when rest parameter 'X' implicitly has an 'any[]' type, but a better type may be inferred from usage..

Why it happens
  1. 1TypeScript cannot infer the type and defaults to 'any' with --noImplicitAny
  2. 2Missing type annotation or type parameter
How to reproduce

TypeScript compiler reports TS7047 during type checking.

trigger — this will error
trigger — this will error
// Triggers TS7047
// Rest parameter 'X' implicitly has an 'any[]' type, but a better type may be inferred from usage.

expected output

error TS7047: Rest parameter 'X' implicitly has an 'any[]' type, but a better type may be inferred from usage.

Fix

Address the TypeScript diagnostic

WHEN When this error is reported by the compiler

Address the TypeScript diagnostic
// Run the TypeScript compiler for details:
npx tsc --noEmit
// Use the TypeScript playground to test your code:
// https://www.typescriptlang.org/play

Why this works

Review the full error message and location; the TypeScript handbook provides guidance on each error category.

What not to do

Suppress with @ts-ignore instead of fixing the type

ts-ignore hides real type errors and makes refactoring unsafe.

Sources
Official documentation ↗

TypeScript Compiler Diagnostics

Content generated with AI assistance and reviewed for accuracy. Found an error? hello@errcodes.dev

← All TypeScript errors