d2d4a5a999
This mainly fix the `onSettingsChange` argument typing. I'm not 100% sure the setting `value` can be a boolean though. But this is how it was typed before so I just made it consistent. Feel free to change - or suggest change - to the type names / location.
5 lines
150 B
TypeScript
5 lines
150 B
TypeScript
import { SettingEntries } from '../managers/plugin-settings-manager.model'
|
|
|
|
export interface PublicServerSetting {
|
|
publicSettings: SettingEntries
|
|
}
|