UNPKG
gazeplotter
Version:
latest (1.4.1)
1.4.1
1.4.0
1.3.0
Gazeplotter is a Svelte application for visualizing eye-tracking data.
gazeplotter.com
gazeplotter
/
dist
/
type
/
Data
/
InterpretedData
/
SegmentInterpretedDataType.d.ts
9 lines
(8 loc)
•
268 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
type
{
ExtendedInterpretedDataType
}
from
'./ExtendedInterpretedDataType.ts'
;
export
interface
SegmentInterpretedDataType
{
id
:
number
;
start
:
number
;
end
:
number
;
category
:
ExtendedInterpretedDataType
;
aoi
:
ExtendedInterpretedDataType
[]; }