import { Cell } from '../../entities'; export interface InspectorConstructor { root: HTMLDivElement; fetchCell: (position: [number, number]) => Cell; title?: string; id?: string; height?: number; } export default class Inspector { title: string; id: string; private contentRef; constructor(opts: InspectorConstructor); }