mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-12 15:24:18 +00:00
20 lines
257 B
JavaScript
20 lines
257 B
JavaScript
'use strict';
|
|
|
|
let types = {};
|
|
|
|
[
|
|
'BOOL',
|
|
'INT',
|
|
'FLOAT',
|
|
'DOUBLE',
|
|
'STRING',
|
|
'DATE',
|
|
'DATA',
|
|
'OBJECT',
|
|
'LIST',
|
|
].forEach(function(type) {
|
|
types[type] = 'PropTypes' + type;
|
|
});
|
|
|
|
module.exports = Object.freeze(types);
|