UNPKG

element-plus

Version:

A Component Library for Vue 3

8 lines (7 loc) 247 B
import type { Ref } from 'vue'; export type ThrottleType = { leading?: number; trailing?: number; initVal?: boolean; } | number; export declare const useThrottleRender: (loading: Ref<boolean>, throttle?: ThrottleType) => Ref<boolean>;