UNPKG

@explita/daily-toolset-components

Version:

A lightweight and versatile collection of TypeScript utility functions and form components, inspired by ShadCN UI, designed for seamless everyday development. Enhance your Node.js, React, and Next.js projects with a well-structured suite of helpers for st

4 lines (3 loc) 208 B
import { ZodObject, ZodSchema } from "zod"; export declare function getBaseSchema(schema: ZodSchema): ZodObject<any>; export declare function generateDefaultObject<SchemaType>(schema: ZodSchema): SchemaType;