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