commit
4d4a959162
2 changed files with 15 additions and 12 deletions
@ -1,15 +1,14 @@ |
|||||||
|
// describe types of a propety as:
|
||||||
|
// mystr: 'string',
|
||||||
|
// mynum: 'number',
|
||||||
|
// mybool: 'boolean',
|
||||||
const types = { |
const types = { |
||||||
// TODO describe property types here
|
hintchars: 'string', |
||||||
// mystr: 'string',
|
|
||||||
// mynum: 'number',
|
|
||||||
// mybool: 'boolean',
|
|
||||||
}; |
}; |
||||||
|
|
||||||
|
// describe default values of a property
|
||||||
const defaults = { |
const defaults = { |
||||||
// TODO describe property defaults values
|
hintchars: 'abcdefghijklmnopqrstuvwxyz', |
||||||
// mystr: 'hello',
|
|
||||||
// mynum: 123,
|
|
||||||
// mybool: true,
|
|
||||||
}; |
}; |
||||||
|
|
||||||
export { types, defaults }; |
export { types, defaults }; |
||||||
|
Reference in new issue