UNPKG

image-nodes

Version:

A library for visual programming of image-processing algorithms on dicom images

18 lines (13 loc) 215 B
class Ports { constructor() { this.ports = []; this.activePort = null; } clearActivePort() { this.activePort = null; } setActivePort(port) { this.activePort = port; } } export default new Ports();