| 45 | }; |
| 46 | |
| 47 | export interface IControl { |
| 48 | onAdd(map: unknown): HTMLElement; |
| 49 | |
| 50 | onRemove(map: unknown): void; |
| 51 | |
| 52 | getDefaultPosition?: (() => ControlPosition) | undefined; |
| 53 | } |
| 54 | |
| 55 | export type ControlPosition = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'; |
| 56 |
no outgoing calls
no test coverage detected
searching dependent graphs…