I want to force a Zod type based on a TypeScript interface:
import { z } from 'zod';
interface Foo {
id: string;
count: number;
}
//
I want to force a Zod type based on a TypeScript interface:
import { z } from 'zod';
interface Foo {
id: string;
count: number;
}
//