| 5 | import { getSettings } from 'src/utils/settings'; |
| 6 | |
| 7 | interface Setting { |
| 8 | schema: string; |
| 9 | key: string; |
| 10 | value: boolean | string; |
| 11 | valueType: 'string' | 'boolean'; |
| 12 | } |
| 13 | |
| 14 | interface RestoreSetting { |
| 15 | setting: Gio.Settings; |
nothing calls this directly
no outgoing calls
no test coverage detected