MCPcopy
hub / github.com/HisMax/RedInk / AppError

Interface AppError

frontend/src/utils/errors.ts:3–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import axios from 'axios'
2
3export interface AppError {
4 type: string
5 code: string
6 title: string
7 detail: string
8 suggestion: string
9 status: number
10 retryable: boolean
11 diagnostics?: Record<string, any>
12}
13
14export type ErrorLike = AppError | string | Error | unknown
15

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected