eventEntry.js 163 B

12345678910
  1. export function EventEntry(params = {}) {
  2. return {
  3. id: '1',
  4. type: 'message',
  5. data: {
  6. formatted: 'Blocked script',
  7. },
  8. ...params,
  9. };
  10. }