(prop: string)
| 70 | function getTheme(): Terminal['options']['theme'] { |
| 71 | const s = getComputedStyle(document.documentElement) |
| 72 | const v = (prop: string) => s.getPropertyValue(prop).trim() |
| 73 | return { |
| 74 | background: v('--term-bg'), |
| 75 | foreground: v('--term-fg'), |
no outgoing calls
no test coverage detected