interface FastifyRouteSchemaDef<T> {
    contentType?: string;
    httpPart?: string;
    httpStatus?: string;
    method: string;
    schema: T;
    url: string;
}

Type Parameters

  • T

Properties

contentType?: string
httpPart?: string
httpStatus?: string
method: string
schema: T
url: string