Preparing search index...

    Interface BLEProviderRegistry

    Added to the ServerAPI extends chain so that plugins can call app.registerBLEProvider(provider) and access app.bleApi.

    interface BLEProviderRegistry {
        bleApi: BLEApi;
        registerBLEProvider: (provider: BLEProvider) => void;
    }

    Hierarchy

    Index
    bleApi: BLEApi

    Access the server-managed BLE API

    registerBLEProvider: (provider: BLEProvider) => void

    Register a BLE provider plugin