kaios-types
    Preparing search index...

    Interface MozWifiNetwork

    Represents a Wi-Fi network interface. Available only if "Navigator::HasWifiManagerSupport" is true.

    interface MozWifiNetwork {
        auth_alg?: string;
        bssid?: string;
        capabilities?: string[];
        connected: boolean;
        dontConnect?: boolean;
        eap?: string;
        frequency: number;
        hidden: boolean;
        identity?: string;
        keyManagement?: string;
        known: boolean;
        mode: number;
        password?: string;
        phase1?: string;
        phase2?: string;
        pin?: string;
        priority?: number;
        psk?: string;
        relSignalStrength?: number;
        scan_ssid?: number;
        security?: string[];
        serverCertificate?: string;
        signalStrength?: string;
        ssid: string;
        subjectMatch?: string;
        userCertificate?: string;
        wep?: string;
        wep_key0?: string;
        wep_key1?: string;
        wep_key2?: string;
        wep_key3?: string;
        wep_tx_keyidx?: number;
    }
    Index

    Properties

    auth_alg?: string
    bssid?: string
    capabilities?: string[]
    connected: boolean
    dontConnect?: boolean
    eap?: string
    frequency: number
    hidden: boolean
    identity?: string
    keyManagement?: string
    known: boolean
    mode: number
    password?: string
    phase1?: string
    phase2?: string
    pin?: string
    priority?: number
    psk?: string
    relSignalStrength?: number
    scan_ssid?: number
    security?: string[]
    serverCertificate?: string
    signalStrength?: string
    ssid: string
    subjectMatch?: string
    userCertificate?: string
    wep?: string
    wep_key0?: string
    wep_key1?: string
    wep_key2?: string
    wep_key3?: string
    wep_tx_keyidx?: number