many breaking changes/fixes

This commit is contained in:
Daniel
2023-03-28 11:01:50 +03:30
parent 3a5ae28f86
commit b9567ca3c2
43 changed files with 1180 additions and 466 deletions
+4 -3
View File
@@ -8,9 +8,10 @@ export interface ExtendedLink extends Link {
export interface NewLink {
name: string;
url: string;
tags: string[];
tags: Tag[];
collection: {
id: string | number;
isNew?: boolean;
id: number | undefined;
name: string | undefined;
ownerId: number | undefined;
};
}