/** * 节流修饰器 * @param delay 节流时间 */ export declare function throttle(delay?: number, rightNow?: boolean): (target: any, propertyKey: string, descriptor: PropertyDescriptor) => void;