aboutsummaryrefslogtreecommitdiff
path: root/src/background/domains/GlobalMark.ts
blob: 1ae912ee006f51348f67ba6fe157dfc618af4903 (plain) (blame)
1
2
3
4
5
6
7
export default interface GlobalMark {
  readonly tabId: number;
  readonly url: string;
  readonly x: number;
  readonly y: number;
  // eslint-disable-next-line semi
}