This commit is contained in:
ditiqi 2025-02-06 19:23:35 +08:00
parent 3a1a2a2517
commit f0897ba69f
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
import { LectureType } from "@nice/common";
export interface SectionData {
id: string;
title: string;
content?: string;
courseId?: string;
}
export interface LectureData {
id: string;
title: string;
meta?: {
type?: LectureType;
fieldIds?: [];
};
content?: string;
sectionId?: string;
}