aboutsummaryrefslogtreecommitdiff
path: root/src/shared/settings/properties.js
blob: 37dc881637edd0e784c12598c7f4314957228e36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// describe types of a propety as:
//    mystr: 'string',
//    mynum: 'number',
//    mybool: 'boolean',
const types = {
  hintchars: 'string',
  smoothscroll: 'boolean',
};

// describe default values of a property
const defaults = {
  hintchars: 'abcdefghijklmnopqrstuvwxyz',
  smoothscroll: false,
};

export { types, defaults };