mt-flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
37 lines (36 loc) • 851 B
TypeScript
import * as z from "zod";
export declare const ghRepoCreateSchema: z.ZodObject<{
user: z.ZodString;
title: z.ZodDefault<z.ZodString>;
repo: z.ZodString;
accessToken: z.ZodString;
}, "strip", z.ZodTypeAny, {
title: string;
user: string;
accessToken: string;
repo: string;
}, {
user: string;
accessToken: string;
repo: string;
title?: string | undefined;
}>;
export declare const ghRepoUpdateSchema: z.ZodObject<{
id: z.ZodString;
title: z.ZodOptional<z.ZodString>;
user: z.ZodString;
repo: z.ZodString;
accessToken: z.ZodString;
}, "strip", z.ZodTypeAny, {
id: string;
user: string;
accessToken: string;
repo: string;
title?: string | undefined;
}, {
id: string;
user: string;
accessToken: string;
repo: string;
title?: string | undefined;
}>;