UNPKG

@webwriter/network

Version:

Visualization of network topologies. Can represent different kinds of networks.

12 lines (10 loc) 238 B
export abstract class GraphNode { id: string; name: string; color: string; cssClass: string[] = []; constructor(color: string) { this.color = color; this.cssClass.push('deletable'); } }