broadcast.js 469 B

1234567891011121314
  1. export function Broadcast(params = {}) {
  2. return {
  3. dateCreated: new Date(),
  4. dateExpires: new Date(),
  5. hasSeen: false,
  6. id: '8',
  7. isActive: true,
  8. link: 'https://docs.sentry.io/clients/javascript/sourcemaps/#uploading-source-maps-to-sentry',
  9. message:
  10. 'Source maps are JSON files that contain information on how to map your transpiled source code back to their original source.',
  11. title: 'Learn about Source Maps',
  12. ...params,
  13. };
  14. }