7 lines
129 B
TypeScript
7 lines
129 B
TypeScript
import { z } from "zod/v4";
|
|
|
|
export const FeatureQuantitySchema = z.object({
|
|
feature_id: z.string(),
|
|
quantity: z.number(),
|
|
});
|