kaios-types
    Preparing search index...

    Interface MozIccManager

    dom.icc.enabled

    mobileconnection

    CertifiedApps

    interface MozIccManager {
        iccIds: string[];
        oniccdetected: EventHandler;
        oniccundetected: EventHandler;
        STK_MENU_TYPE_DATA_VALUES: number;
        STK_MENU_TYPE_NAVIGATION_OPTIONS: number;
        STK_MENU_TYPE_NOT_SPECIFIED: number;
        addEventListener(
            type: string,
            callback: EventListenerOrEventListenerObject | null,
            options?: boolean | AddEventListenerOptions,
        ): void;
        dispatchEvent(event: Event): boolean;
        getIccById(iccId: string): MozIcc | null;
        removeEventListener(
            type: string,
            callback: EventListenerOrEventListenerObject | null,
            options?: boolean | EventListenerOptions,
        ): void;
    }

    Hierarchy

    • EventTarget
      • MozIccManager
    Index

    Properties

    iccIds: string[]

    List of available ICC IDs.

    Cached

    Pure

    oniccdetected: EventHandler

    Event handler for when a new ICC is detected.

    oniccundetected: EventHandler

    Event handler for when an ICC becomes undetected.

    STK_MENU_TYPE_DATA_VALUES: number

    STK Menu Type: Data Values

    STK_MENU_TYPE_NAVIGATION_OPTIONS: number

    STK Menu Type: Navigation Options

    STK_MENU_TYPE_NOT_SPECIFIED: number

    STK Menu Type: Not Specified

    Methods

    • The addEventListener() method of the EventTarget interface sets up a function that will be called whenever the specified event is delivered to the target.

      MDN Reference

      Parameters

      • type: string
      • callback: EventListenerOrEventListenerObject | null
      • Optionaloptions: boolean | AddEventListenerOptions

      Returns void

    • The dispatchEvent() method of the EventTarget sends an Event to the object, (synchronously) invoking the affected event listeners in the appropriate order.

      MDN Reference

      Parameters

      • event: Event

      Returns boolean

    • The removeEventListener() method of the EventTarget interface removes an event listener previously registered with EventTarget.addEventListener() from the target.

      MDN Reference

      Parameters

      • type: string
      • callback: EventListenerOrEventListenerObject | null
      • Optionaloptions: boolean | EventListenerOptions

      Returns void