UNPKG

@nx/js

Version:

The JS plugin for Nx contains executors and generators that provide the best experience for developing JavaScript and TypeScript projects.

5 lines (4 loc) 149 B
export declare function createCoalescingDebounce<T>(fn: () => Promise<T>, wait: number): { trigger: () => Promise<T>; cancel: () => void; };