mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 19:56:47 +03:00
Use a type for labs
This commit is contained in:
parent
1aaedb527d
commit
4cf6b7174b
1 changed files with 3 additions and 1 deletions
|
@ -85,6 +85,8 @@ interface IHandlerMap {
|
|||
[level: SettingLevel]: SettingsHandler;
|
||||
}
|
||||
|
||||
export type LabsFeatureState = "labs" | "disable" | "enable" | string;
|
||||
|
||||
/**
|
||||
* Controls and manages application settings by providing varying levels at which the
|
||||
* setting value may be specified. The levels are then used to determine what the setting
|
||||
|
@ -610,7 +612,7 @@ export default class SettingsStore {
|
|||
return handlers;
|
||||
}
|
||||
|
||||
private static getFeatureState(settingName: string): "labs" | "disable" | "enable" | string {
|
||||
private static getFeatureState(settingName: string): LabsFeatureState {
|
||||
const featuresConfig = SdkConfig.get()['features'];
|
||||
const enableLabs = SdkConfig.get()['enableLabs']; // we'll honour the old flag
|
||||
|
||||
|
|
Loading…
Reference in a new issue