Spaces:
Configuration error
Configuration error
File size: 406 Bytes
b06ed0c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import type { AttributifyAttributes } from '@unocss/preset-attributify'
// declare module 'solid-js' {
// namespace JSX {
// interface HTMLAttributes<T> extends AttributifyAttributes {}
// }
// }
declare global {
namespace astroHTML.JSX {
interface HTMLAttributes extends AttributifyAttributes { }
}
namespace JSX {
interface HTMLAttributes<T> extends AttributifyAttributes {}
}
} |