mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-30 11:19:12 +01:00
10 lines
166 B
TypeScript
10 lines
166 B
TypeScript
import { z } from "zod";
|
|
|
|
const findIconsSchema = z.object({
|
|
searchText: z.string().optional(),
|
|
});
|
|
|
|
export const iconsSchemas = {
|
|
findIcons: findIconsSchema,
|
|
};
|