Options for `createBroadcastStorage(...)`.
| 954 | |
| 955 | /** Options for `createBroadcastStorage(...)`. */ |
| 956 | interface BroadcastStorageOptions { |
| 957 | /** BroadcastChannel name. Defaults to `"xstate-store"`. */ |
| 958 | channel?: string; |
| 959 | } |
| 960 | |
| 961 | /** Storage adapter returned by `createBroadcastStorage(...)`. */ |
| 962 | type BroadcastStorage = StateStorage & { |
nothing calls this directly
no outgoing calls
no test coverage detected