Files
cfw-autumn/shared/api/billingControls/overageAllowed.ts
2026-03-30 15:25:40 +01:00

7 lines
270 B
TypeScript

import type { z } from "zod/v4";
import { DbOverageAllowedSchema } from "../../models/cusModels/billingControls/overageAllowed.js";
export const ApiOverageAllowedSchema = DbOverageAllowedSchema;
export type ApiOverageAllowed = z.infer<typeof ApiOverageAllowedSchema>;