move to git.n39.euall books in the bag ...

This commit is contained in:
0ry5 2024-09-09 20:41:15 +02:00
commit 8cc2662092
64 changed files with 134252 additions and 0 deletions
middleware/types

11
middleware/types/Book.ts Normal file
View file

@ -0,0 +1,11 @@
export type Book = {
id: number;
uuid: string;
isbn: string;
title: string;
published: number;
lastCheckoutDate: number | null;
checkoutBy: string | null;
contact: string | null;
shelf: "AVAILABLE" | "FNORD1" | "FNORD2" | "SHARING" | null;
};