feat(server): add registry persistence store

This commit is contained in:
nav
2026-04-08 20:33:25 +00:00
parent bc1a002a8c
commit c5287fa474
2 changed files with 191 additions and 0 deletions

View File

@@ -19,6 +19,16 @@ export {
type SerializedClientRecord,
type ServerPersistenceData
} from "./core/persistence.js";
export {
SERVER_PERSISTENCE_VERSION,
YonexusServerStoreError,
YonexusServerStoreCorruptionError,
createYonexusServerStore,
loadServerStore,
saveServerStore,
type ServerStoreLoadResult,
type YonexusServerStore
} from "./core/store.js";
export interface YonexusServerPluginManifest {
readonly name: "Yonexus.Server";