feat: add project management features including open/save functionality and recovery support

This commit is contained in:
syntaxbullet
2026-07-10 23:46:01 +02:00
parent 6d652c3264
commit 9697075d29
15 changed files with 613 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
export type RecoveryStorage = {
read(key: string): Promise<string | null>;
write(key: string, value: string): Promise<void>;
remove(key: string): Promise<void>;
};