From 7a5fb894d244020fdceda12e66025ac0073cbdaf Mon Sep 17 00:00:00 2001 From: neverland Date: Thu, 11 Feb 2021 12:34:25 +0800 Subject: [PATCH] types: fix to prop typing (#8134) --- src/composables/use-route.ts | 4 ++-- src/vue-tsx-shim.d.ts | 1 + test/dom.ts | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/composables/use-route.ts b/src/composables/use-route.ts index f06c0680e..f387764dc 100644 --- a/src/composables/use-route.ts +++ b/src/composables/use-route.ts @@ -7,10 +7,10 @@ import { getCurrentInstance, ComponentPublicInstance, } from 'vue'; -import type { RouteLocation } from 'vue-router'; +import type { RouteLocationRaw } from 'vue-router'; export const routeProps = { - to: [String, Object] as PropType, + to: [String, Object] as PropType, url: String, replace: Boolean, }; diff --git a/src/vue-tsx-shim.d.ts b/src/vue-tsx-shim.d.ts index 4302cbb7a..a9268530a 100644 --- a/src/vue-tsx-shim.d.ts +++ b/src/vue-tsx-shim.d.ts @@ -14,5 +14,6 @@ declare module 'vue' { onClosed?: EventHandler; onChange?: EventHandler; onToggle?: EventHandler; + onClickStep?: EventHandler; } } diff --git a/test/dom.ts b/test/dom.ts index c07be8935..1497e39aa 100644 --- a/test/dom.ts +++ b/test/dom.ts @@ -37,10 +37,10 @@ export function mockScrollIntoView() { return fn; } -export function mockGetBoundingClientRect(rect: DOMRect): () => void { +export function mockGetBoundingClientRect(rect: Partial): () => void { const originMethod = Element.prototype.getBoundingClientRect; - Element.prototype.getBoundingClientRect = jest.fn(() => rect); + Element.prototype.getBoundingClientRect = jest.fn(() => rect as DOMRect); return function () { Element.prototype.getBoundingClientRect = originMethod;