Skip to content

Commit

Permalink
fix: type
Browse files Browse the repository at this point in the history
  • Loading branch information
izatop committed Jun 23, 2022
1 parent bf0ab65 commit 70e73e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export abstract class IncomingMessageAbstract<T> {
public readonly payload: T;
public static readonly concurrency = 1;
public static readonly concurrency: number = 1;

constructor(payload: T) {
this.payload = payload;
Expand Down

0 comments on commit 70e73e5

Please sign in to comment.