UNPKG

@microagents/server-hackernews

Version:

MCP server for Hacker News API integration

6 lines (5 loc) 155 B
import { z } from "zod"; /** * Validate input against a Zod schema */ export declare function validateInput<T>(schema: z.ZodType<T>, input: unknown): T;