UNPKG

goodreads-bookshelf

Version:
9 lines (8 loc) 185 B
import { Book } from './book'; export interface Bookshelf { readBooks(): Book[]; readingBooks(): Book[]; readBooksGroupedByYear(): { [key: number]: Book[]; }; }