aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/framework/src/models/errorInfo.ts
blob: f07145500c7bd3bc05521594692043175d38a7be (plain)
1
2
3
4
5
6
7
8
9
10
11
export type ErrorInfo = {
  error?: Error | null,
  url?: string,
  line?: number,
  col?: number,
  info?: {
    extra?: string,
    componentStack?: string
  },
  message?: string
}