7 lines
189 B
TypeScript
7 lines
189 B
TypeScript
import type { AttributifyAttributes } from '@unocss/preset-attributify'
|
|
|
|
declare module 'solid-js' {
|
|
namespace JSX {
|
|
interface HTMLAttributes<T> extends AttributifyAttributes {}
|
|
}
|
|
} |