mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 17:00:54 +01:00
* refactor: remove central validation export to improve typescript performance * fix: missing package exports change in validation package * chore: address pull request feedback
7 lines
166 B
TypeScript
7 lines
166 B
TypeScript
import { z } from "zod";
|
|
|
|
export const iconsFindSchema = z.object({
|
|
searchText: z.string().optional(),
|
|
limitPerGroup: z.number().min(1).max(500).default(12),
|
|
});
|