| 94 | } |
| 95 | |
| 96 | interface LoadedConfig { |
| 97 | readonly config: RemobiConfig |
| 98 | readonly source: string |
| 99 | } |
| 100 | |
| 101 | function isRecord(value: unknown): value is Record<string, unknown> { |
| 102 | return typeof value === 'object' && value !== null && !Array.isArray(value) |
nothing calls this directly
no outgoing calls
no test coverage detected