hyper/typings/styled.d.ts

9 lines
158 B
TypeScript
Raw Normal View History

2025-04-21 19:45:30 -08:00
import 'react';
declare module 'react' {
interface StyleHTMLAttributes<T> extends React.HTMLAttributes<T> {
jsx?: boolean;
global?: boolean;
}
}