Skip to content

pantoken-root / formats/scope/src / observeScope

Συνάρτηση: observeScope() ​

observeScope(target, listener): () => void

Βήτα

Call listener whenever the scope resolved for target αλλάζει, συμπεριλαμβανομένης της περίπτωσης που τα attributes αλλάζουν.

Παράμετροι ​

target ​

Element

listener ​

(scope) => void

Επιστρέφει ​

Μία ενέργεια AI.

() => void

Παράδειγμα ​

ts
import { observeScope } from "@pantoken/scope";

const stop = observeScope(el, (scope) => render(scope.theme, scope.scheme));