module Sentry

def add_breadcrumb(breadcrumb, **options)

Experimental RBS support (using type sampling data from the type_fusion project).

def add_breadcrumb: (Sentry::Breadcrumb breadcrumb, **Hash options) -> untyped

This signature was generated using 8 samples from 1 application.

Returns:
  • (Breadcrumb, nil) -
def add_breadcrumb(breadcrumb, **options)
  return unless initialized?
  get_current_hub.add_breadcrumb(breadcrumb, **options)
end