UNPKG

@rockpack/logger

Version:

This module can help you build error tracking & crash reporting system for your React application.

10 lines (9 loc) 255 B
/// <reference types="react" /> import { Stack } from './types'; export interface BSODInterface { count: number; onClose: () => void; stackData: Stack; } declare const BSOD: (props: BSODInterface) => JSX.Element; export default BSOD;