jsx.d.ts (vue-2.7.13) | : | jsx.d.ts (vue-2.7.14) | ||
---|---|---|---|---|
skipping to change at line 1300 | skipping to change at line 1300 | |||
onAnimationstart: AnimationEvent | onAnimationstart: AnimationEvent | |||
onAnimationend: AnimationEvent | onAnimationend: AnimationEvent | |||
onAnimationiteration: AnimationEvent | onAnimationiteration: AnimationEvent | |||
// transition events | // transition events | |||
onTransitionend: TransitionEvent | onTransitionend: TransitionEvent | |||
onTransitionstart: TransitionEvent | onTransitionstart: TransitionEvent | |||
} | } | |||
type EventHandlers<E> = { | type EventHandlers<E> = { | |||
[K in keyof E]?: E[K] extends Function ? E[K] : (payload: E[K]) => void | [K in keyof E]?: E[K] extends (...args: any) => any | |||
? E[K] | ||||
: (payload: E[K]) => void | ||||
} | } | |||
type ReservedProps = { | type ReservedProps = { | |||
key?: string | number | symbol | key?: string | number | symbol | |||
ref?: VNodeData['ref'] | ref?: VNodeData['ref'] | |||
/** | /** | |||
* @deprecated Old named slot syntax has been deprecated, use the new syntax | * @deprecated Old named slot syntax has been deprecated, use the new syntax | |||
* instead: `<template v-slot:name>` | * instead: `<template v-slot:name>` | |||
* https://v2.vuejs.org/v2/guide/components-slots.html#Named-Slots | * https://v2.vuejs.org/v2/guide/components-slots.html#Named-Slots | |||
*/ | */ | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 3 lines changed or added |