Skip to content

Version 0.11.4

Latest
Compare
Choose a tag to compare
@Mr0grog Mr0grog released this 10 Nov 19:27
· 6 commits to main since this release
9f87676

This release updates the TypeScript types for this project, and doesn’t include any changes to functionality. There are also no changes since v0.11.4-a.1.

Bug Fixes:

  • BufferedMetricsLogger is now an actual class & type when you import it in TypeScript. That is, you can now do:

    import { BufferedMetricsLogger } from 'datadog-metrics';
    
    function useLogger(logger: BufferedMetricsLogger) {
        // ...
    }

    Previously, you would have had to declare the type for logger as typeof BufferedMetricsLogger.prototype. (#120)

View diff