UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

11 lines (10 loc) 238 B
import * as z from "zod"; export const sshCmdInputSchema = z.object({ sshHost: z.object({ host: z.string(), port: z.number(), user: z.string(), password: z.string(), }), command: z.string() });