goodreads-bookshelf
Version:
Facade of Goodreads Bookshelf
10 lines (9 loc) • 355 B
TypeScript
import { BookDataFetcher } from './book-data-fetcher';
import { BookDataParser } from './book-data-parser';
import { BaseBookshelf } from './base-bookshelf';
export declare class BookshelfBuilder {
private _dataFetcher;
private _dataParser;
constructor(fetcher: BookDataFetcher, parser: BookDataParser);
build(): Promise<BaseBookshelf>;
}