node-red-contrib-chatbot
Version:
REDBot a Chat bot for a full featured chat bot for Telegram, Facebook Messenger and Slack. Almost no coding skills required
13 lines (11 loc) • 296 B
JavaScript
import PropTypes from 'prop-types';
import momentPropTypes from 'react-moment-proptypes';
const TypeSimulatorMessage = PropTypes.shape({
username: PropTypes.string,
ts: momentPropTypes.momentObj,
content: PropTypes.string,
userId: PropTypes.string
});
export {
TypeSimulatorMessage
};