index.ts
435 Bytes
export enum HandleTypeEnum {
SOURCE = 'source',
TARGET = 'target',
}
export enum NodeTypeEnum {
CUSTOM = 'custom',
}
export enum EdgeTypeEnum {
CUSTOM = 'custom',
}
export enum BasicConnectionModalEnum {
BASIC = 'BASIC',
CUSTOM = 'CUSTOM',
}
export enum MarkerArrowEnum {
BASIC_ARROW = 'basicArrow',
BASIC_ARROW_SELECTED = 'basicArrowSelected',
}
export enum ElementsTypeEnum {
NODE = 'NODE',
EDGE = 'EDGE',
}