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