el.xwx.moe/types/global.ts
2023-03-06 00:33:20 +03:30

16 lines
254 B
TypeScript

import { Link, Tag } from "@prisma/client";
export interface LinkAndTags extends Link {
tags: Tag[];
}
export interface NewLink {
name: string;
url: string;
tags: string[];
collectionId: {
id: string | number;
isNew?: boolean;
};
}