Files
cfw-autumn/shared/api/billing/common/customizePlan/customizePlanV0.ts
2026-02-17 12:48:11 +00:00

7 lines
261 B
TypeScript

import { ProductItemSchema } from "@models/productV2Models/productItemModels/productItemModels";
import { z } from "zod/v4";
export const CustomizePlanV0Schema = z.array(ProductItemSchema);
export type CustomizePlanV0 = z.infer<typeof CustomizePlanV0Schema>;