Skip to content

Commit

Permalink
Merge pull request #213 from amc6/add_missing_decrement_overload_type
Browse files Browse the repository at this point in the history
Add missing decrement overload type
  • Loading branch information
bdeitte authored Sep 26, 2021
2 parents f28d646 + 140fba8 commit ebd6b2c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ declare module "hot-shots" {
increment(stat: string | string[], value: number, sampleRate?: number, callback?: StatsCb): void;

decrement(stat: string): void;
decrement(stat: string, tags?: Tags): void;
decrement(stat: string | string[], value: number, sampleRate?: number, tags?: Tags, callback?: StatsCb): void;
decrement(stat: string | string[], value: number, tags?: Tags, callback?: StatsCb): void;
decrement(stat: string | string[], value: number, callback?: StatsCb): void;
Expand Down

0 comments on commit ebd6b2c

Please sign in to comment.