el.xwx.moe/types/global.ts

17 lines
291 B
TypeScript
Raw Normal View History

2023-03-10 13:25:33 -06:00
import { Collection, Link, Tag } from "@prisma/client";
2023-03-05 15:03:20 -06:00
2023-03-10 13:25:33 -06:00
export interface ExtendedLink extends Link {
2023-03-05 15:03:20 -06:00
tags: Tag[];
2023-03-10 13:25:33 -06:00
collection: Collection;
2023-03-05 15:03:20 -06:00
}
export interface NewLink {
name: string;
url: string;
tags: string[];
collection: {
2023-03-05 15:03:20 -06:00
id: string | number;
isNew?: boolean;
};
}