| 1 | import { INode } from 'markmap-common'; |
| 2 | |
| 3 | export interface IMarkmapState { |
| 4 | id: string; |
| 5 | data?: INode; |
| 6 | highlight?: INode; |
| 7 | rect: { |
| 8 | x1: number; |
| 9 | x2: number; |
| 10 | y1: number; |
| 11 | y2: number; |
| 12 | }; |
| 13 | } |
| 14 | |
| 15 | /** |
| 16 | * Portable options that can be derived into `IMarkmapOptions`. |
nothing calls this directly
no outgoing calls
no test coverage detected