You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
295 B

2 months ago
/// <reference types="./css" />
/// <reference types="./index" />
/// <reference types="./macro" />
/// <reference types="./style" />
import React from 'react'
declare module 'react' {
interface StyleHTMLAttributes<T> extends HTMLAttributes<T> {
jsx?: boolean
global?: boolean
}
}