hyperspace-desktop-client-w.../src/types/Tag.tsx

8 lines
121 B
TypeScript

import { History } from "./History";
export type Tag = {
name: string;
url: string;
history?: [History];
};