Skip to content

Commit

Permalink
chore: fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniAkash committed May 2, 2024
1 parent a95725d commit 350171a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ interface ErrorEvent {

type BulkUploadEventEmitter<T> = EventEmitter & {
emit<K extends keyof T>(event: K, payload: T[K]): boolean;
on<K extends keyof T>(event: K, listener: (payload: T[K]) => void): this;
on<K extends keyof T>(event: K, listener: (payload: T[K]) => void): void;
};

export type InputBulkUpload = BulkUploadEventEmitter<UploadEvents>;
Expand Down

0 comments on commit 350171a

Please sign in to comment.