ansnid-anse/shims.d.ts
2023-06-04 15:55:58 +08:00

17 lines
406 B
TypeScript

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<> extends AttributifyAttributes {}
}
}