mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 08:50:56 +01:00
11 lines
223 B
TypeScript
11 lines
223 B
TypeScript
import { z } from "zod";
|
|
|
|
const findIconsSchema = z.object({
|
|
searchText: z.string().optional(),
|
|
limitPerGroup: z.number().min(1).max(500).default(12),
|
|
});
|
|
|
|
export const iconsSchemas = {
|
|
findIcons: findIconsSchema,
|
|
};
|