(key: string, legacy?: string[])
| 481 | |
| 482 | export const Persist = { |
| 483 | global(key: string, legacy?: string[]): PersistTarget { |
| 484 | return { storage: GLOBAL_STORAGE, key, legacy } |
| 485 | }, |
| 486 | window(key: string, legacy?: string[]): PersistTarget { |
| 487 | return { scope: "window", key, legacy } |
| 488 | }, |
no outgoing calls
no test coverage detected