10 lines
236 B
TypeScript
10 lines
236 B
TypeScript
import type { ContentfulStatusCode } from 'hono/utils/http-status'
|
|
|
|
export type ProblemDetails = {
|
|
type: string
|
|
title: string
|
|
status: ContentfulStatusCode
|
|
detail?: string
|
|
instance?: string
|
|
errors?: Record<string, string[]>
|
|
} |