import { SeverityEnum } from "../utils/Severity"; import { BREADCRUMBTYPES } from "../common/constant"; import { ReportDataType } from "./transportData"; import { Replace } from "./replace"; import { TNumStrObj } from "./common"; export interface BreadcrumbPushData { /** * 事件类型 */ type: BREADCRUMBTYPES; data: ReportDataType | Replace.IRouter | Replace.TriggerConsole | TNumStrObj; /** * 分为user action、debug、http、 */ category?: string; time?: number; level: SeverityEnum; }