import {DisplayedObject} from './displayedObject'; import {EditableObject} from './editableObject'; export class TableCell { private objects: Array | EditableObject; private style: string; constructor(objects: Array | EditableObject, style?: string) { this.objects = objects; this.style = style; } getObjects() { return this.objects; } getStyle() { return this.style; } }