move to git.n39.euall books in the bag ...
This commit is contained in:
commit
8cc2662092
64 changed files with 134252 additions and 0 deletions
middleware/types
11
middleware/types/Book.ts
Normal file
11
middleware/types/Book.ts
Normal 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;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue