3. 타입스크립트 5.3 신기능 - satisfies
// This would error in 5.2, but is allowed in 5.3!
const array = ["a", "b", "c"] as const satisfies string[];
- 이렇게하면 무조건 any[] 가 아니라 string[] 이 되는 듯
https://www.totaltypescript.com/the-typescript-5-3-feature-they-didn-t-tell-you-about