Prepared partial move to TypeScript

This commit is contained in:
Daniël van Noord
2021-04-06 11:36:24 +02:00
parent df639be579
commit 16c80cbf4b
15 changed files with 1195 additions and 75 deletions

View File

@@ -0,0 +1,11 @@
import Setting from './BaseSetting';
/** The colour picker setting class */
export default class SettingColours extends Setting {
desc: string;
constructor(type: string, group: string, desc: string) {
super(type, group);
this.desc = desc;
}
}