feat: add client auth request flow

This commit is contained in:
nav
2026-04-08 22:04:44 +00:00
parent cec59784de
commit 5ca6ec0952
2 changed files with 76 additions and 1 deletions

View File

@@ -18,6 +18,8 @@ export interface ClientTransport {
connect(): Promise<void>;
disconnect(): void;
send(message: string): boolean;
markAuthenticated(): void;
markAuthenticating(): void;
}
export type ClientMessageHandler = (message: string) => void;