Skip to content

Instantly share code, notes, and snippets.

@Alexisvt
Created February 10, 2023 23:10
Show Gist options
  • Save Alexisvt/6b35a8e0ed144ba8b7dc5aa8fd671544 to your computer and use it in GitHub Desktop.
Save Alexisvt/6b35a8e0ed144ba8b7dc5aa8fd671544 to your computer and use it in GitHub Desktop.
Interface to support data-* attributes in props due to a design decision in TypeScript.
export interface DataAttributes {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
[n: `data-${string}`]: any
}
// more info about it:
// https://github.com/microsoft/TypeScript/issues/47211
// https://github.com/microsoft/TypeScript/issues/28960
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment