mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 04:43:03 -05:00
18 lines
688 B
TypeScript
18 lines
688 B
TypeScript
export interface Book {
|
|
name: string;
|
|
author: string;
|
|
}
|
|
|
|
export const availableBooks = [
|
|
{ name: 'To Kill a Mockingbird', author: 'Harper Lee' },
|
|
{ name: '1984', author: 'George Orwell' },
|
|
{ name: 'The Catcher in the Rye', author: 'J.D. Salinger' },
|
|
{ name: 'The Great Gats', author: 'F. Scott Fitzgerald' },
|
|
{ name: 'Pride and Prejudice', author: 'Jane Austen' },
|
|
{ name: 'The Hobbit', author: 'J.R.R. Tolkien' },
|
|
{ name: 'The Lord of the Rings', author: 'J.R.R. Tolkien' },
|
|
{ name: "Harry Potter and the Philosopher's Stone", author: 'J.K. Rowling' },
|
|
{ name: 'The Hunger Games', author: 'Suzanne Collins' },
|
|
{ name: 'Animal Farm', author: 'George Orwell' },
|
|
];
|