aboutsummaryrefslogtreecommitdiffstats
path: root/code/app/src/models/internal/KnownProblem.ts
blob: b6923d905feb74f2ac2ee0a251b30b4421585d83 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export type KnownProblem = {
    title: string,
    subtitle: string,
    errors: Record<string, string[]>,
    traceId: string,
}

export function is_known_problem(response: Response): boolean {
    return response.headers.has("X-IsKnownProblem");
}