perf: improve the type of setTimeout (#11069)

* perf: improve the type of setTimeout with 'ReturnType<typeof setTimeout>'

* fix: fix type 'number' is not assignable to type 'Timeout'

Co-authored-by: wangjunwei <wangjunwei@nucarf.com>
This commit is contained in:
Gavin 2022-09-22 11:24:32 +08:00 committed by GitHub
parent ccd92a6eee
commit e0063ae249
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 7 additions and 7 deletions

View File

@ -140,7 +140,7 @@ export default defineComponent({
let startMoveY: number;
let startScale: number;
let startDistance: number;
let doubleTapTimer: NodeJS.Timeout | null;
let doubleTapTimer: ReturnType<typeof setTimeout> | null;
let touchStartTime: number;
const onTouchStart = (event: TouchEvent) => {

View File

@ -56,7 +56,7 @@ export default defineComponent({
setup(props, { emit, slots }) {
let wrapWidth = 0;
let contentWidth = 0;
let startTimer: NodeJS.Timeout;
let startTimer: ReturnType<typeof setTimeout>;
const wrapRef = ref<HTMLElement>();
const contentRef = ref<HTMLElement>();

View File

@ -3,7 +3,7 @@ import { mountComponent, usePopupState } from '../utils/mount-component';
import VanNotify from './Notify';
import type { NotifyMessage, NotifyOptions } from './types';
let timer: number;
let timer: ReturnType<typeof setTimeout>;
let instance: ComponentInstance;
const parseOptions = (message: NotifyMessage | NotifyOptions) =>
@ -55,7 +55,7 @@ export function showNotify(options: NotifyMessage | NotifyOptions) {
clearTimeout(timer);
if (options.duration! > 0) {
timer = window.setTimeout(closeNotify, options.duration);
timer = setTimeout(closeNotify, options.duration);
}
return instance;

View File

@ -214,7 +214,7 @@ export default defineComponent({
};
let isLongPress: boolean;
let longPressTimer: NodeJS.Timeout;
let longPressTimer: ReturnType<typeof setTimeout>;
const longPressStep = () => {
longPressTimer = setTimeout(() => {

View File

@ -235,7 +235,7 @@ export default defineComponent({
});
};
let autoplayTimer: NodeJS.Timeout;
let autoplayTimer: ReturnType<typeof setTimeout>;
const stopAutoplay = () => clearTimeout(autoplayTimer);

View File

@ -72,7 +72,7 @@ export default defineComponent({
emits: ['update:show'],
setup(props, { emit, slots }) {
let timer: NodeJS.Timeout;
let timer: ReturnType<typeof setTimeout>;
let clickable = false;
const toggleClickable = () => {