/*! * just-debounce-it * Copyright (c) 2016 angus croll The MIT License (MIT) */ export default function debounce any>(fn: T, wait: number, callFirst?: boolean): (...args: Parameters) => ReturnType | undefined;