nextui/typings/styled.d.ts
2021-04-23 23:30:45 -03:00

10 lines
173 B
TypeScript

declare global {
declare module 'react' {
interface StyleHTMLAttributes<T> extends React.HTMLAttributes<T> {
jsx?: boolean;
global?: boolean;
}
}
}