export type DebounceOptions = {
/**
* 调用函数前等待的时间
*
* @defaultValue 0
*/
wait?: number
/**
* 在超时前立即调用
*
* @defaultValue false
*/
leading?: boolean
/**
* 在超时后调用函数
*
* @defaultValue true
*/
trailing?: boolean
}
export type UseDebouncedFnOptions = DebounceOptions & {}