12 lines
		
	
	
		
			328 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			328 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /* eslint-disable line-comment-position */
 | |
| /* eslint-disable no-inline-comments */
 | |
| export type GraphStreamCommand =
 | |
|   'cn'| // create node
 | |
|   'en'| // end node
 | |
|   'cug'| // create unordered graph
 | |
|   'cdg'| // create directional graph
 | |
|   'csg'| // create subgraph
 | |
|   'eg'| // end graph
 | |
|   'at'| // add attributes
 | |
|   'ce' // create edge
 |