@readerseye2/cr_type 1.0.99 → 1.0.100
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ast/ast.types.d.ts +2 -1
- package/package.json +1 -1
package/dist/ast/ast.types.d.ts
CHANGED
|
@@ -104,7 +104,8 @@ export type SectionQuiz = {
|
|
|
104
104
|
limit_sec: number;
|
|
105
105
|
};
|
|
106
106
|
export type SectionAST = {
|
|
107
|
-
title
|
|
107
|
+
/** @deprecated title은 MongoDB SectionSummary에서 관리. 하위호환용 optional */
|
|
108
|
+
title?: string;
|
|
108
109
|
blocks: Block[];
|
|
109
110
|
isAddedSplit?: boolean;
|
|
110
111
|
isAddedAudio?: boolean;
|