10 lines
231 B
TypeScript
10 lines
231 B
TypeScript
import { z } from "zod/v4";
|
|
|
|
export const GetFeatureParamsSchema = z.object({
|
|
feature_id: z.string().meta({
|
|
description: "The ID of the feature.",
|
|
}),
|
|
});
|
|
|
|
export type GetFeatureParams = z.infer<typeof GetFeatureParamsSchema>;
|