eventEntry.ts 229 B

1234567891011
  1. import {type Entry as TEntry, EntryType} from 'sentry/types';
  2. export function EventEntry(params = {}): TEntry {
  3. return {
  4. type: EntryType.MESSAGE,
  5. data: {
  6. formatted: 'Blocked script',
  7. },
  8. ...params,
  9. };
  10. }