default property values
This commit is contained in:
parent
f4499b840c
commit
fe48dce1c9
5 changed files with 24 additions and 12 deletions
15
src/shared/settings/properties.js
Normal file
15
src/shared/settings/properties.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
const types = {
|
||||
// TODO describe property types here
|
||||
// mystr: 'string',
|
||||
// mynum: 'number',
|
||||
// mybool: 'boolean',
|
||||
};
|
||||
|
||||
const defaults = {
|
||||
// TODO describe property defaults values
|
||||
// mystr: 'hello',
|
||||
// mynum: 123,
|
||||
// mybool: true,
|
||||
};
|
||||
|
||||
export { types, defaults };
|
Reference in a new issue