UNPKG

goodreads-bookshelf

Version:
7 lines (6 loc) 165 B
import { BookDTO } from './book-dto'; export interface BookDataParser { booklist(): BookDTO[]; parse(rawData: string): Promise<void>; done(): boolean; }