Is it possible to combine akita persistState function with the capacitor Storage plugin like this?
persistState({ storage: Storage});
Is it possible to combine akita persistState function with the capacitor Storage plugin like this?
persistState({ storage: Storage});
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.