atomrc / callbag-debounce

Debounce ⏱ operator for Callbag 👜
MIT License
12 stars 5 forks source link

new improved typings not published #11

Closed loreanvictor closed 3 years ago

loreanvictor commented 3 years ago

It appears that the published version of the package does not have the improved typings. This is the code on master:

export function debounce<I>(wait: number): (source: Source<I>) => Source<I> {
  // ...
}

while this is the last published version:

export declare function debounce(wait: number): any;

Are there any plans to publish again so the improved typings are also published? It appears that they were merged 8 months ago.

atomrc commented 3 years ago

The new types are published under v2.1.3 👍

loreanvictor commented 3 years ago

Thanks!