@readerseye2/cr_type 1.0.140 → 1.0.142
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.
|
@@ -30,6 +30,8 @@ export interface ViewerSnapshot {
|
|
|
30
30
|
audio?: AudioSnapshot;
|
|
31
31
|
range?: RangeSnapshot | null;
|
|
32
32
|
translate?: TranslateSnapshot | null;
|
|
33
|
+
/** 렌더링된 텍스트의 워드 간 평균 거리 (px) — reading saccade 판정용 */
|
|
34
|
+
wordAvgDistancePx?: number;
|
|
33
35
|
}
|
|
34
36
|
/** 책/섹션 메타데이터 */
|
|
35
37
|
export interface SessionMeta {
|
|
@@ -172,6 +172,8 @@ export type RecordingSnapshot = {
|
|
|
172
172
|
audio?: AudioSnapshot;
|
|
173
173
|
range?: RangeSnapshot | null;
|
|
174
174
|
translate?: TranslateSnapshot | null;
|
|
175
|
+
/** 렌더링된 run 간 수평 평균 거리 (px) — reading saccade 판정용 */
|
|
176
|
+
wordAvgDistancePx?: number;
|
|
175
177
|
};
|
|
176
178
|
/** 녹화 청크 */
|
|
177
179
|
export type RecordingChunk = {
|