Interface DevfiveRoute<Name, Path>

interface DevfiveRoute<Name, Path> {
    body?: ZodTypeAny;
    method: "delete" | "post" | "put" | "patch" | "get";
    name: Name;
    path: Path;
    response: ZodTypeAny;
}

Type Parameters

  • Name = string

  • Path = string

Properties

body?: ZodTypeAny
method: "delete" | "post" | "put" | "patch" | "get"
name: Name
path: Path
response: ZodTypeAny

Generated using TypeDoc