export interface ThrottleOptions {
    /** 超时时间，单位为毫秒 */
    wait?: number;
    /** 是否在延迟开始前调用函数 */
    leading?: boolean;
    /** 是否在延迟开始后调用函数 */
    trailing?: boolean;
}
