()
| 12 | export type Platform = 'electron' | 'web-serve' | 'web-browser' |
| 13 | |
| 14 | export function detectPlatform(): Platform { |
| 15 | if (IS_ELECTRON) return 'electron' |
| 16 | if (IS_BROWSER_STANDALONE) return 'web-browser' |
| 17 | return 'web-serve' |
| 18 | } |
| 19 | |
| 20 | const adapters = new Map<string, unknown>() |
| 21 | let _initialized = false |