+ create user, login, logout

This commit is contained in:
2026-05-06 23:17:50 +02:00
parent 424799692a
commit 5f36ff0b7d
9 changed files with 430 additions and 29 deletions

View File

@@ -4,6 +4,12 @@ import * as Y from "yjs";
export type ConnectionStatus = "connecting" | "connected" | "offline";
export interface User{
userid: string,
private_key: CryptoKey,
public_key: CryptoKey | undefined,
}
export interface OptionRecord {
id: string;
label: string;