Rename ActionCache to ActionsCache

This commit is contained in:
Sergey Dolin
2023-07-04 18:29:58 +02:00
parent 765f3db869
commit a9c16cbf4d
8 changed files with 16 additions and 16 deletions

View File

@@ -60,7 +60,7 @@ export class State implements IState {
return this.stateStorage.save(this.serialized);
}
async rehydrate(): Promise<void> {
async restore(): Promise<void> {
this.reset();
const serialized = await this.stateStorage.restore();
this.deserialize(serialized);