aboutsummaryrefslogtreecommitdiff
path: root/src/background/completion/TabItem.ts
blob: eb7b6576bf252eb35ce06ec7926e709d15ff57a6 (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;