feat: 支持分享关卡通关上报

This commit is contained in:
richarjiang
2026-04-08 21:34:36 +08:00
parent fe823df01e
commit 447e7a944a
6 changed files with 672 additions and 4 deletions

View File

@@ -55,3 +55,10 @@ export interface JoinShareData {
title: string;
levels: ShareLevelData[];
}
/** 上报关卡进度响应 */
export interface ReportProgressData {
passed: boolean;
timeLimit: number | null;
withinTimeLimit: boolean;
}