- Docusaurus 3.7.0 with both English and Chinese (zh-CN) locales - Full API reference split into structured pages - Homepage with hero, feature cards, and quick start section - GitHub Actions workflow for auto-deployment to GitHub Pages Co-authored-by: Cursor <cursoragent@cursor.com>
584 B
584 B
| id | title |
|---|---|
| storage | 存储约定 |
💾 存储约定
| 能力 | 推荐存储 | 内容 |
|---|---|---|
ref.save() |
文件系统 | 全分辨率 PNG 路径 |
ref.session() |
MMKV / AsyncStorage | JSON 元数据(URL、上色记录、画笔颜色等) |
MaskSegmentSession 结构
{
version: 1;
originUrl: string;
maskUrl: string;
painted: PaintedRegionRecord[]; // { regionId, regionName, color, configJson? }
paintHistory: number[];
currentColor?: BgrColor;
currentColorConfigJson?: Record<string, unknown>;
savedAt: number;
}