mirror of
https://github.com/danielvici/tool-website.git
synced 2026-01-16 18:31:26 +00:00
7 lines
114 B
TypeScript
7 lines
114 B
TypeScript
export type PinnedWebsite = {
|
|
id: string;
|
|
title: string;
|
|
url: string;
|
|
icon?: string;
|
|
addedAt: number;
|
|
}
|