feat: add collection functionality

This commit is contained in:
Daniel
2023-04-25 01:00:40 +03:30
parent b02766f6c8
commit 4bfb08a52e
12 changed files with 86 additions and 134 deletions
+5
View File
@@ -20,3 +20,8 @@ export interface NewLink {
ownerId: number | undefined;
};
}
export interface NewCollection {
name: string;
description: string;
}