mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 12:38:39 -09:00
* bump electron * Lock yarn * try to resolve differences * Lock node version * Resolve conflict * Fix typescript errors * More ts fixes * Fix lint issues
8 lines
158 B
TypeScript
8 lines
158 B
TypeScript
import 'react';
|
|
|
|
declare module 'react' {
|
|
interface StyleHTMLAttributes<T> extends React.HTMLAttributes<T> {
|
|
jsx?: boolean;
|
|
global?: boolean;
|
|
}
|
|
}
|