Files
library-frontend/src/app/interfaces/book.interfaces.ts
2025-11-10 23:28:05 +01:00

5 lines
93 B
TypeScript

export interface BookInfo {
title: string;
releaseYear: number;
author: string;
}