mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
8 lines
152 B
TypeScript
8 lines
152 B
TypeScript
import React from 'react'
|
|
|
|
declare module 'react' {
|
|
interface MetaHTMLAttributes<T> extends React.MetaHTMLAttributes<T> {
|
|
itemprop?: string
|
|
}
|
|
}
|