mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
10 lines
173 B
TypeScript
10 lines
173 B
TypeScript
declare global {
|
|
declare module 'react' {
|
|
interface StyleHTMLAttributes<T> extends React.HTMLAttributes<T> {
|
|
jsx?: boolean;
|
|
global?: boolean;
|
|
}
|
|
}
|
|
}
|
|
|