mt-flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
37 lines (36 loc) • 785 B
TypeScript
import * as z from "zod";
export declare const sshCmdInputSchema: z.ZodObject<{
sshHost: z.ZodObject<{
host: z.ZodString;
port: z.ZodNumber;
user: z.ZodString;
password: z.ZodString;
}, "strip", z.ZodTypeAny, {
password: string;
user: string;
host: string;
port: number;
}, {
password: string;
user: string;
host: string;
port: number;
}>;
command: z.ZodString;
}, "strip", z.ZodTypeAny, {
sshHost: {
password: string;
user: string;
host: string;
port: number;
};
command: string;
}, {
sshHost: {
password: string;
user: string;
host: string;
port: number;
};
command: string;
}>;