// ── 复习 / 发布 ── import type { ReviewCardItem } from './api' export type { ReviewCardItem } export interface ReviewCard { id: string userId: string userName?: string frontText: string backText?: string difficulty: string | null status: string scheduleState: string | null intervalDays: number repetitionCount: number lapseCount: number nextReviewAt: string | null createdAt?: string } export interface Changelog { id: string version: string title: string content: string type: 'feature' | 'fix' | 'improvement' | 'breaking' published: boolean publishedAt?: string createdAt: string } export interface ReleaseDecision { id: string title: string description?: string status: string priority?: string assignee?: string createdAt: string } export interface ReleaseChecklistItem { id: string label: string checked: boolean category?: string }