(
currentStyles: StyleElement[],
update: (styles: ChangedStyles) => void,
shadowRootDiscovered: (root: ShadowRoot) => void
)
| 10 | } |
| 11 | |
| 12 | export function watchForStyleChanges( |
| 13 | currentStyles: StyleElement[], |
| 14 | update: (styles: ChangedStyles) => void, |
| 15 | shadowRootDiscovered: (root: ShadowRoot) => void |
| 16 | ): void { |
| 17 | watchForStylePositions(currentStyles, update, shadowRootDiscovered); |
| 18 | } |
| 19 | |
| 20 | export function stopWatchingForStyleChanges(): void { |
| 21 | stopWatchingForStylePositions(); |
no test coverage detected