(
options: FileSystemStateBackendOptions = {}
)
| 491 | export const MemoryStateBackend = FileSystemStateBackend; |
| 492 | |
| 493 | export function createMemoryStateBackend( |
| 494 | options: FileSystemStateBackendOptions = {} |
| 495 | ): FileSystemStateBackend { |
| 496 | return new FileSystemStateBackend(options); |
| 497 | } |
| 498 | |
| 499 | // ── Utilities ───────────────────────────────────────────────────────── |
| 500 |
no outgoing calls
no test coverage detected