Many improvements.

This commit is contained in:
Daniel
2023-03-06 00:33:20 +03:30
parent f3e104aafe
commit cff10fa9b6
19 changed files with 314 additions and 79 deletions
+15
View File
@@ -0,0 +1,15 @@
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;
};
}