Skip to content

Commit

Permalink
fix: issue with Client generic not being passed along
Browse files Browse the repository at this point in the history
  • Loading branch information
erunion committed Oct 25, 2023
1 parent a9fb20d commit 358a4a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/targets/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ export interface Client<T extends Record<string, any> = Record<string, any>> {
info: ClientInfo;
}

export interface ClientPlugin {
client: Client;
export interface ClientPlugin<T extends Record<string, any> = Record<string, any>> {
client: Client<T>;
target: TargetId;
}

Expand Down

0 comments on commit 358a4a8

Please sign in to comment.