()
| 658 | } |
| 659 | |
| 660 | export function getConfig(): ResolvedRuntimeConfig { |
| 661 | if (!storeState.initialized) { |
| 662 | return resolveConfig({}); |
| 663 | } |
| 664 | |
| 665 | return storeState.resolved; |
| 666 | } |
| 667 | |
| 668 | export async function persistSessionDefaultsPatch(opts: { |
| 669 | patch: Partial<SessionDefaults>; |
no test coverage detected