mirror of
https://github.com/XFox111/TabsAsideExtension.git
synced 2026-04-22 07:58:01 +03:00
16 lines
245 B
TypeScript
16 lines
245 B
TypeScript
export type LegacyCollection =
|
|
{
|
|
timestamp: number;
|
|
tabsCount: number;
|
|
titles: string[];
|
|
links: string[];
|
|
icons?: string[];
|
|
thumbnails?: string[];
|
|
};
|
|
|
|
export type LegacyGraphics =
|
|
{
|
|
pageCapture?: string;
|
|
iconUrl?: string;
|
|
};
|