feat: export the events type

This commit is contained in:
net-tech-
2024-01-27 15:35:47 +01:00
committed by Paul Makles
parent 6eb6ddbc31
commit 6007fb5783
+1 -1
View File
@@ -39,7 +39,7 @@ export type Session = { _id: string; token: string; user_id: string } | string;
/**
* Events provided by the client
*/
type Events = {
export type Events = {
error(error: Error): void;
connected(): void;