Files
solid-ts-example/shims.d.ts
严浩 04604e16fd
All checks were successful
CI / cache-and-install (push) Successful in 31s
chore: Remove unused Unocss presets and dependencies
2024-08-05 12:32:19 +08:00

7 lines
189 B
TypeScript

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