TS satisfies keyword

Creator
Creator
Seonglae ChoSeonglae Cho
Created
Created
2025 Oct 16 14:3
Editor
Edited
Edited
2025 Oct 16 14:3
Refs
Refs
  • : (type annotation) - Forces the type - Type changes - const x: string
  • as (type assertion) - Forces type conversion - Type changes - const x = "a" as string
  • satisfies - Only "validates" the type - Type preserved - const x = "a" satisfies string
 
 
 
 
 
 
 
 

Recommendations