/** * Platform Schema — Zod 数据模型 * 定义平台配置的核心数据结构 * 对应 .speccore/config/platforms.yaml */ import { z } from 'zod'; export declare const PlatformConfigSchema: any; export declare const PlatformsConfigSchema: any; export type PlatformConfig = z.infer; export type PlatformsConfig = z.infer; export declare const DEFAULT_PLATFORMS: PlatformsConfig; //# sourceMappingURL=platform.schema.d.ts.map