File tree 1 file changed +14
-5
lines changed
1 file changed +14
-5
lines changed Original file line number Diff line number Diff line change
1
+ import type { AttributifyAttributes } from 'unocss/preset-attributify'
2
+
1
3
declare namespace svelteHTML {
2
- import type { AttributifyAttributes } from 'unocss/preset-attributify'
4
+ type HTMLAttributes = import ( 'unocss/preset-attributify' ) . AttributifyAttributes
3
5
4
- type HTMLAttributes = AttributifyAttributes
5
6
}
6
7
7
- declare namespace JSX {
8
- import type { AttributifyAttributes } from 'unocss/preset-attributify'
8
+ declare global {
9
+ namespace astroHTML . JSX {
10
+ import type { AttributifyAttributes } from 'unocss/preset-attributify'
11
+
12
+ interface HTMLAttributes extends AttributifyAttributes { }
13
+ }
14
+ }
9
15
10
- interface HTMLAttributes extends AttributifyAttributes { }
16
+ declare module 'solid-js' {
17
+ namespace JSX {
18
+ interface HTMLAttributes < T > extends AttributifyAttributes { }
19
+ }
11
20
}
You can’t perform that action at this time.
0 commit comments