UNPKG

@sdc-monitor/demo

Version:

<div align="center"> <a href="#" target="_blank"> <img src="https://i.loli.net/2021/07/28/EvPwd4NjVH3tBfO.jpg" alt="mito-logo" height="90"> </a> <p>A Lightweight SDK For Monitor Web</p>

20 lines (18 loc) 480 B
import { BrowserBreadcrumbTypes } from '@sdc-monitor/shared' import { getBreadcrumbCategoryInBrowser, Severity } from '@sdc-monitor/utils' import { BrowserClient } from './browserClient' export function addBreadcrumbInBrowser( this: BrowserClient, data: any, type: BrowserBreadcrumbTypes, level = Severity.Info, params: any = {} ) { return this.breadcrumb.push({ type, data, category: getBreadcrumbCategoryInBrowser(type), level, ...params }) }