UNPKG

gazeplotter

Version:

Gazeplotter is a Svelte application for visualizing eye-tracking data.

7 lines (6 loc) 332 B
import type { DeserializerOutputType } from '../../../type/DeserializerOutput/DeserializerOutputType.js'; export declare abstract class AbstractEyeDeserializer { abstract deserialize(row: string[]): DeserializerOutputType; abstract finalize(): DeserializerOutputType; getIndex(header: string[], name: string): number; }