We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
any
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tuple, type check, any,
Playground link with relevant code
type Fields = [fieldKey: string, fieldValue: any][] const x: any = null // should fail but doesn't const f: Fields = ['some str', x] // fails correctly const f2: Fields = ['some str', null] // correct const f3: Fields = [['some str', x]]
const x: any = null // should fail but doesn't const f: Fields = ['some str', x]
Should raise a type error
The text was updated successfully, but these errors were encountered:
Duplicate of #19541. Used search terms: array any in:title
array any in:title
Sorry, something went wrong.
No branches or pull requests
π Search Terms
tuple, type check, any,
β― Playground Link
Playground link with relevant code
π» Code
π Actual behavior
π Expected behavior
Should raise a type error
The text was updated successfully, but these errors were encountered: