11 lines
245 B
TypeScript
11 lines
245 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[]>;
|
|
};
|