UNPKG

kevoree-entities

Version:

Kevoree Entities - Set of abstract Kevoree entities (group, node, channel, component)

19 lines (17 loc) 253 B
/** * DataType * Enum-like * @object */ const DataType = { STRING: 'string', BOOLEAN: 'boolean', INT: 'int', LONG: 'long', FLOAT: 'float', DOUBLE: 'double', BYTE: 'byte', SHORT: 'short', CHAR: 'char' }; module.exports = DataType;