| 54 | } |
| 55 | |
| 56 | export interface ISettings { |
| 57 | getIntegerSetting(selector: string): number; |
| 58 | getFloatSetting(selector: string): number; |
| 59 | getStringSetting(selector: string): string; |
| 60 | getChoiceComboSetting(selector: string): string; |
| 61 | getBooleanSetting(selector: string): boolean; |
| 62 | setSetting(selector: string, value: SettingValue): void; |
| 63 | save(): void; |
| 64 | }; |
| 65 | |
| 66 | export type PluginRegistrationCallback = (registrationCallbacks: RegistrationCallbacks, config: any) => void; |
| 67 |
no outgoing calls
no test coverage detected