A receiver of newly created foreign cells.

interface IReceiver {
    addCell(cell: CodeCell, msgId: string): void;
    createCodeCell(): CodeCell;
    getCell(msgId: string): undefined | CodeCell;
    update(): void;
}

Methods