Files
cfw-autumn/shared/api/billingControls/usageAlert.ts
2026-03-19 11:50:39 +00:00

11 lines
310 B
TypeScript

import type { z } from "zod/v4";
import {
DbUsageAlertSchema,
UsageAlertThresholdType,
} from "../../models/cusModels/billingControls/usageAlert.js";
export const ApiUsageAlertSchema = DbUsageAlertSchema;
export { UsageAlertThresholdType };
export type ApiUsageAlert = z.infer<typeof ApiUsageAlertSchema>;