@vue-jsx-vapor/runtime 3.1.1 → 3.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/jsx.d.ts +2 -2
- package/package.json +1 -1
package/dist/jsx.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as vue0 from "vue";
|
|
2
2
|
import * as CSS from "csstype";
|
|
3
3
|
|
|
4
4
|
//#region src/jsx.d.ts
|
|
@@ -1191,7 +1191,7 @@ interface Events<T = Element> {
|
|
|
1191
1191
|
onTransitionstart: TransitionEventHandler<T>;
|
|
1192
1192
|
}
|
|
1193
1193
|
type EventHandlers<E> = { [K in keyof E]?: E[K] extends ((...args: any) => any) ? E[K] : (payload: E[K]) => void };
|
|
1194
|
-
type _ReservedProps =
|
|
1194
|
+
type _ReservedProps = vue0.ReservedProps;
|
|
1195
1195
|
interface ReservedProps extends _ReservedProps {}
|
|
1196
1196
|
type NativeElements = { [K in keyof IntrinsicElementAttributes]: IntrinsicElementAttributes[K] & ReservedProps };
|
|
1197
1197
|
interface BaseSyntheticEvent<E = object, C = unknown, T = unknown> {
|