You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
280 B

import z from "zod";
import { ItemModel } from "../item";
export const SearchModel = z.object({
items: ItemModel.array(),
nextpage: z.string(),
suggestion: z.string().nullable(),
corrected: z.boolean()
});
type Search = z.infer<typeof SearchModel>;
export default Search;