@readerseye2/cr_type 1.0.142 → 1.0.143
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.
|
@@ -32,6 +32,10 @@ export interface ViewerSnapshot {
|
|
|
32
32
|
translate?: TranslateSnapshot | null;
|
|
33
33
|
/** 렌더링된 텍스트의 워드 간 평균 거리 (px) — reading saccade 판정용 */
|
|
34
34
|
wordAvgDistancePx?: number;
|
|
35
|
+
/** 녹화 당시 전체 화면 크기 (window.innerWidth) */
|
|
36
|
+
screenWidth?: number;
|
|
37
|
+
/** 녹화 당시 전체 화면 크기 (window.innerHeight) */
|
|
38
|
+
screenHeight?: number;
|
|
35
39
|
}
|
|
36
40
|
/** 책/섹션 메타데이터 */
|
|
37
41
|
export interface SessionMeta {
|
|
@@ -174,6 +174,9 @@ export type RecordingSnapshot = {
|
|
|
174
174
|
translate?: TranslateSnapshot | null;
|
|
175
175
|
/** 렌더링된 run 간 수평 평균 거리 (px) — reading saccade 판정용 */
|
|
176
176
|
wordAvgDistancePx?: number;
|
|
177
|
+
/** 녹화 당시 전체 화면 크기 */
|
|
178
|
+
screenWidth?: number;
|
|
179
|
+
screenHeight?: number;
|
|
177
180
|
};
|
|
178
181
|
/** 녹화 청크 */
|
|
179
182
|
export type RecordingChunk = {
|