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