Type alias ScanResult

ScanResult: {
    bssid: string;
    frequency: number;
    security: ScanResultSecurity;
    signal: number;
    ssid: string;
}

Scan result, specifies information about an access point.

Type declaration

  • bssid: string

    MAC address of the access point.

  • frequency: number

    Frequency of the access point in MHz.

  • security: ScanResultSecurity

    Security type of the access point.

  • signal: number

    Received signal strength of the access point in dBm.

  • ssid: string

    Name of the access point.

Generated using TypeDoc