Files

7 lines
138 B
TypeScript

export interface IBluetoothAdvertisement {
id: string;
name?: string;
rssi?: number;
manufacturerData?: Record<string, string>;
}