UNPKG

@graphiql/react

Version:

[Changelog](https://github.com/graphql/graphiql/blob/main/packages/graphiql-react/CHANGELOG.md) | [API Docs](https://graphiql-test.netlify.app/typedoc/modules/graphiql_react.html) | [NPM](https://www.npmjs.com/package/@graphiql/react)

6 lines (5 loc) 231 B
/** * Provided a duration and a function, returns a new function which is called * `duration` milliseconds after the last call. */ export default function debounce<F extends (...args: any[]) => any>(duration: number, fn: F): F;