| 4 | import {logWarn} from '../utils/log'; |
| 5 | |
| 6 | interface CreateNodeAsapParams { |
| 7 | selectNode: () => HTMLElement; |
| 8 | createNode: (target: HTMLElement) => void; |
| 9 | updateNode: (existing: HTMLElement) => void; |
| 10 | selectTarget: () => HTMLElement; |
| 11 | createTarget: () => HTMLElement; |
| 12 | isTargetMutation: (mutation: MutationRecord) => boolean; |
| 13 | } |
| 14 | |
| 15 | interface NodePosetionWatcher { |
| 16 | run: () => void; |
nothing calls this directly
no outgoing calls
no test coverage detected