mirror of
https://github.com/zhigang1992/react.git
synced 2026-02-10 22:45:11 +08: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
|
|
}
|
|
}
|