/** * Iteration Schema — Zod 数据模型 * 定义迭代(迭代)的核心数据结构 */ import { z } from 'zod'; export declare const IterationStatusSchema: any; export declare const IterationGoalSchema: any; export declare const IterationStatsSchema: any; export declare const IterationSchema: any; export type IterationStatus = z.infer; export type IterationGoal = z.infer; export type IterationStats = z.infer; export type Iteration = z.infer; //# sourceMappingURL=iteration.schema.d.ts.map