aboutsummaryrefslogtreecommitdiff
path: root/src/shared/settings/properties.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/settings/properties.js')
-rw-r--r--src/shared/settings/properties.js15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/shared/settings/properties.js b/src/shared/settings/properties.js
index ff8039b..f695c58 100644
--- a/src/shared/settings/properties.js
+++ b/src/shared/settings/properties.js
@@ -1,15 +1,14 @@
+// describe types of a propety as:
+// mystr: 'string',
+// mynum: 'number',
+// mybool: 'boolean',
const types = {
- // TODO describe property types here
- // mystr: 'string',
- // mynum: 'number',
- // mybool: 'boolean',
+ hintchars: 'string',
};
+// describe default values of a property
const defaults = {
- // TODO describe property defaults values
- // mystr: 'hello',
- // mynum: 123,
- // mybool: true,
+ hintchars: 'abcdefghijklmnopqrstuvwxyz',
};
export { types, defaults };