// urlWatcherComponent.ts import { LightningElement } from "lwc"; import { UrlWatcher } from "dxUtils/urlWatcher"; export default class UrlWatcherComponent extends LightningElement { watcher = UrlWatcher.getInstance(); connectedCallback() { // Just ensure the singleton initializes } }