aboutsummaryrefslogtreecommitdiff
path: root/src/background/completion/TabItem.ts
blob: 630855a5bb0efe35f457d9f5d916437fb6cebb8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import TabFlag from "../../shared/TabFlag";

type TabItem = {
    index: number
    flag: TabFlag
    title: string
    url: string
    faviconUrl?: string
}

export default TabItem;