Simplify API

This commit is contained in:
Andras Schmelczer 2025-02-20 22:22:20 +00:00
parent 010b3d61e9
commit eb1ad9921a
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
5 changed files with 203 additions and 53 deletions

View file

@ -0,0 +1,4 @@
export interface PersistenceProvider {
load: () => Promise<unknown>;
save: (data: unknown) => Promise<void>;
}