Interface TabInfo

interface TabInfo {
    active?: boolean;
    tabId?: number;
    title?: string;
    url?: string;
    windowId?: number;
}

Properties

active?: boolean
tabId?: number
title?: string
url?: string
windowId?: number