We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
$-
From microsoft/TypeScript#28960
import * as React from 'react'; type DataAttributeKey = `data-${string}`; interface HTMLAttributes extends React.HTMLAttributes<any> { [dataAttribute: DataAttributeKey]: any; } function Component(props: { host: HTMLAttributes }) { return <div {...props.host} /> } <Component host={{ 'data-testid': 'component', 'role': 'generic', // @ts-expect-error shouldError: 1 }} />
The text was updated successfully, but these errors were encountered:
No branches or pull requests
From microsoft/TypeScript#28960
The text was updated successfully, but these errors were encountered: