remove obsolete enum type

This commit is contained in:
Timo Hocker 2020-10-05 19:32:29 +02:00
parent 59542eb7b1
commit 9a2c2ce14c

View File

@ -9,7 +9,6 @@
/* eslint-disable no-inline-comments */
type GraphStreamCommand =
'cn'|
'en'|
'cug'|
'cdg'|
'csg'|
@ -20,7 +19,6 @@ type GraphStreamCommand =
function translate_command (cmd: GraphStreamCommand|''): string {
const translations = {
cn: 'create node',
en: 'end node',
cug: 'create unordered graph',
cdg: 'create directional graph',
csg: 'create subgraph',