Source: lib/core/runtime/AvenxBridge.js

/**
 * Base class for Avenx Bridges.
 * Bridges are used to share state and logic across components.
 */
export class AvenxBridge {
    constructor() {
        // Initial state can be defined in the constructor of the extending class.
    }
}