/** * 生成6位短ID (time-based + crypto random) * 格式: 4位时间戳(base36) + 2位随机 * 例如: "k8x3a1", "m9f2b7" */ export declare function shortId(): string; /** * 生成迭代ID: Iteration-{shortId}-{name} */ export declare function iterationId(name: string): string; /** * 生成任务ID: Task-{shortId} */ export declare function taskId(): string; //# sourceMappingURL=short-id.d.ts.map