xLog/global.d.ts

9 lines
182 B
TypeScript

declare module "react" {
export interface HTMLAttributes<T> extends AriaAttributes, DOMAttributes<T> {
"data-hide-print"?: boolean
"aria-hidden"?: boolean
}
}
export {}