0

Is it possible to combine akita persistState function with the capacitor Storage plugin like this?

persistState({ storage: Storage});
Ardent Coder
  • 3,777
  • 9
  • 27
  • 53
pablo
  • 1
  • 1
  • 1

1 Answers1

0

No. storage object in akita persistState method is of type PersistStateStorage, that is

export interface PersistStateStorage {
    getItem(key: string): MaybeAsync;
    setItem(key: string, value: any): MaybeAsync;
    clear(): void;
}

Capacitor Storage has is of Type StoragePlugin which has get(), set() methods on it.