/** * Debounces a function call, see http://demo.nimius.net/debounce_throttle/ for explanation of debounce vs throttle. * @param debounceTime How many milliseconds to debounce for. */ export declare function Debounce(debounceTime?: number): (_target: any, _key: string, descriptor: PropertyDescriptor) => void;