blob: f695c58339dc5d4d597853ba5653fcda5637b5ea (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// describe types of a propety as:
// mystr: 'string',
// mynum: 'number',
// mybool: 'boolean',
const types = {
hintchars: 'string',
};
// describe default values of a property
const defaults = {
hintchars: 'abcdefghijklmnopqrstuvwxyz',
};
export { types, defaults };
|