Skip to content

Commit

Permalink
Fix type rollup
Browse files Browse the repository at this point in the history
  • Loading branch information
cdauth committed Apr 15, 2024
1 parent 3fba16e commit b863c84
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion client/src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ interface ClientData {

errorConstructors.set("PadNotFoundError", PadNotFoundError as any);

export default class Client {
class Client {
private socket: SocketIO<SocketServerToClientEvents<SocketVersion.V2>, SocketClientToServerEvents<SocketVersion.V2>>;
private state: ClientState;
private data: ClientData;
Expand Down Expand Up @@ -698,3 +698,5 @@ export default class Client {
return this.data.routes;
}
}

export default Client;

0 comments on commit b863c84

Please sign in to comment.