Skip to main content

Basic Types

Type Assertions

0:00
LearnStep 1/2

Type Assertions

Type Assertions

Tell TypeScript you know more about a type than it can infer:

typescript

When to Use Assertions

  • DOM elements with specific types
  • API responses you know the shape of
  • Narrowing union types when you're certain

⚠️ Caution

typescript