@antv/g6
Version:
A Graph Visualization Framework in JavaScript
18 lines (13 loc) • 439 B
text/typescript
export type CardinalPlacement = 'left' | 'right' | 'top' | 'bottom';
export type CornerPlacement =
| 'left-top'
| 'left-bottom'
| 'right-top'
| 'right-bottom'
| 'top-left'
| 'top-right'
| 'bottom-left'
| 'bottom-right';
export type RelativePlacement = [number, number];
export type DirectionalPlacement = CardinalPlacement | CornerPlacement | 'center';
export type Placement = RelativePlacement | DirectionalPlacement;