@@ -21,7 +21,7 @@ export interface PersistedClient {
2121 clientState : DehydratedState
2222}
2323
24- export interface PersistQueryClienRootOptions {
24+ export interface PersistQueryClientRootOptions {
2525 /** The QueryClient to persist */
2626 queryClient : QueryClient
2727 /** The Persister interface for storing and restoring the cache
@@ -33,7 +33,7 @@ export interface PersistQueryClienRootOptions {
3333}
3434
3535export interface PersistedQueryClientRestoreOptions
36- extends PersistQueryClienRootOptions {
36+ extends PersistQueryClientRootOptions {
3737 /** The max-allowed age of the cache in milliseconds.
3838 * If a persisted cache is found that is older than this
3939 * time, it will be discarded */
@@ -43,15 +43,15 @@ export interface PersistedQueryClientRestoreOptions
4343}
4444
4545export interface PersistedQueryClientSaveOptions
46- extends PersistQueryClienRootOptions {
46+ extends PersistQueryClientRootOptions {
4747 /** The options passed to the dehydrate function */
4848 dehydrateOptions ?: DehydrateOptions
4949}
5050
5151export interface PersistQueryClientOptions
5252 extends PersistedQueryClientRestoreOptions ,
5353 PersistedQueryClientSaveOptions ,
54- PersistQueryClienRootOptions { }
54+ PersistQueryClientRootOptions { }
5555
5656/**
5757 * Checks if emitted event is about cache change and not about observers.
0 commit comments