unknown (TypeScript)
`unknown` is the type-safe counterpart of `any`. It can hold any value, but TypeScript won't let you use it until you narrow it down to a specific type first.
`unknown` is the type-safe counterpart of `any`. It can hold any value, but TypeScript won't let you use it until you narrow it down to a specific type first.