2025-09-30 15:29:12 +02:00

7 lines
149 B
TypeScript

export type Item = {
timestamp: number;
category: 'home' | 'royal-road' | 'podcasts' | 'mixtapes';
title: string;
info: string;
link: string;
};