(c) 2026, Micro:bit Educational Foundation and contributors

SPDX-License-Identifier: MIT

interface DeviceBondState {
    isBonded(id: string): boolean;
    setBonded(id: string, isBonded: boolean): void;
}

Methods