broadcast.js 482 B

123456789101112131415
  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:
  9. 'https://docs.sentry.io/hosted/clients/javascript/sourcemaps/#uploading-source-maps-to-sentry',
  10. message:
  11. 'Source maps are JSON files that contain information on how to map your transpiled source code back to their original source.',
  12. title: 'Learn about Source Maps',
  13. ...params,
  14. };
  15. }