12 lines
303 B
TypeScript
12 lines
303 B
TypeScript
import Setting from './BaseSetting';
|
|
|
|
/** The colour picker setting class */
|
|
export default class SettingColours extends Setting {
|
|
desc: string;
|
|
|
|
constructor(defaultValue: string | number,type: string, group: string, desc: string) {
|
|
super(defaultValue, type, group);
|
|
this.desc = desc;
|
|
}
|
|
}
|