mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 01:22:49 +00:00
9 lines
158 B
TypeScript
9 lines
158 B
TypeScript
import 'react';
|
|
|
|
declare module 'react' {
|
|
interface StyleHTMLAttributes<T> extends React.HTMLAttributes<T> {
|
|
jsx?: boolean;
|
|
global?: boolean;
|
|
}
|
|
}
|