types.ts 332 B

1234567891011121314
  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. * @default false
  12. */
  13. includeErrorTestMutation?: boolean;
  14. }