Skip to content

Instantly share code, notes, and snippets.

@oleersoy
Created November 19, 2019 22:21
Show Gist options
  • Save oleersoy/c730f848cebe07fe842532ca8f6778a7 to your computer and use it in GitHub Desktop.
Save oleersoy/c730f848cebe07fe842532ca8f6778a7 to your computer and use it in GitHub Desktop.
export type Book = {
id: string;
volumeInfo: {
title: string;
subtitle: string;
authors: string[];
publisher: string;
publishDate: string;
description: string;
averageRating: number;
ratingsCount: number;
imageLinks: {
thumbnail: string;
smallThumbnail: string;
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment