nextui/apps/docs/typings/styled.d.ts
2022-01-01 18:56:14 -03:00

10 lines
173 B
TypeScript

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