"use strict"; exports.__esModule = true; exports.wordCloudEncoderFactory = void 0; var _encodable = require("encodable"); const wordCloudEncoderFactory = (0, _encodable.createEncoderFactory)({ channelTypes: { color: 'Color', fontFamily: 'Category', fontSize: 'Numeric', fontWeight: 'Category', text: 'Text' }, defaultEncoding: { color: { value: 'black' }, fontFamily: { value: 'Helvetica' }, fontSize: { value: 20 }, fontWeight: { value: 'bold' }, text: { value: '' } } }); exports.wordCloudEncoderFactory = wordCloudEncoderFactory;