/** * Task Schema — Zod 数据模型 * 定义 Task(任务)的核心数据结构 */ import { z } from 'zod'; export declare const TaskStatusSchema: any; export declare const TaskTypeSchema: any; export declare const PlatformSchema: any; export declare const PrioritySchema: any; export declare const TaskOutputSchema: any; export declare const ChangelogEntrySchema: any; export declare const AssigneeSchema: any; export declare const TaskSchema: any; export type TaskStatus = z.infer; export type TaskType = z.infer; export type Platform = z.infer; export type Priority = z.infer; export type TaskOutput = z.infer; export type ChangelogEntry = z.infer; export type Assignee = z.infer; export type Task = z.infer; //# sourceMappingURL=task.schema.d.ts.map