7 lines
245 B
TypeScript
7 lines
245 B
TypeScript
import { APIFeatureSchema } from "@api/features/apiFeature.js";
|
|
import type { z } from "zod/v4";
|
|
|
|
export const UpdateFeatureParamsSchema = APIFeatureSchema.partial();
|
|
|
|
export type UpdateFeatureParams = z.infer<typeof UpdateFeatureParamsSchema>;
|