UNPKG

opds-web-client

Version:
6 lines (5 loc) 387 B
import { OPDSFeed, OPDSEntry } from "opds-feed-parser"; import { CollectionData, BookData } from "./interfaces"; export declare function adapter(data: OPDSFeed | OPDSEntry, url: string): CollectionData | BookData; export declare function entryToBook(entry: OPDSEntry, feedUrl: string): BookData; export declare function feedToCollection(feed: OPDSFeed, feedUrl: string): CollectionData;