Welcome to mirror list, hosted at ThFree Co, Russian Federation.

debounce.d.ts « utils « lib « package « popperjs - github.com/gohugoio/hugo-mod-jslibs-dist.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e0b5d5ff38fdde6e01b631d7b5a7e662d4654f5a (plain)
1
export default function debounce<T>(fn: (...args: Array<any>) => any): () => Promise<T>;