[React Typescript] Updating the Global Namespace for an Additional Attribute

I want to add a common attribute to dom element globally:

<>
  <div testId="123" />
  <audio testId="123" />
  <video testId="123" />
  <a testId="123" />
  <abbr testId="123" />
  <address testId="123" />
</>;

 

Solution:

declare global {
  namespace React {
    interface HTMLAttributes<T> {
      solutionTestId?: string;
    }
  }
}

 

posted @   Zhentiw  阅读(7)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
历史上的今天:
2022-08-24 [Typescript] Only Type import or export
2022-08-24 [Typescript] Toolbox: isError
2022-08-24 [Typescript] ts-expect-error
2021-08-24 [Cloud Architect] 1. Design for Availability, Reliability, and Resiliency
2020-08-24 [CSS] Use grid-template to make your CSS Grid declarations more readable
2020-08-24 [Machine Learning Ex2] Linear Regression with Multiple Variables
2020-08-24 [Machine Learning] Normal Equation Noninvertibility
点击右上角即可分享
微信分享提示