9 lines
150 B
TypeScript

import { Category } from "./Category";
export type Item = {
timestamp: number;
category: Category;
title: string;
info: string;
link: string;
};