types.ts 544 B

123456789101112131415161718
  1. /**
  2. * @description
  3. * Configuration options for the {@link SentryPlugin}.
  4. *
  5. * @docsCategory core plugins/SentryPlugin
  6. */
  7. export interface SentryPluginOptions {
  8. /**
  9. * @description
  10. * Whether to include the error test mutation in the admin API.
  11. * When enabled, a `createTestError` mutation becomes available in
  12. * the Admin API, which can be used to create different types of error
  13. * to check that the integration is working correctly.
  14. *
  15. * @default false
  16. */
  17. includeErrorTestMutation?: boolean;
  18. }