Prepared partial move to TypeScript
This commit is contained in:
29
src/Data/SettingClasses/SettingStandard.ts
Normal file
29
src/Data/SettingClasses/SettingStandard.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
import Setting from './BaseSetting';
|
||||
|
||||
/** The standard toggle setting class */
|
||||
export default class SettingStandard extends Setting {
|
||||
label: string[];
|
||||
|
||||
desc: string;
|
||||
|
||||
toggle: boolean;
|
||||
|
||||
func: () => void;
|
||||
|
||||
constructor(
|
||||
type: string,
|
||||
group: string,
|
||||
label: string[],
|
||||
desc: string,
|
||||
toggle: boolean,
|
||||
func?: () => void,
|
||||
) {
|
||||
super(type, group);
|
||||
this.label = label;
|
||||
this.desc = desc;
|
||||
this.toggle = toggle;
|
||||
if (func !== undefined) {
|
||||
this.func = func;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user