UNPKG

opds-web-client

Version:
26 lines (25 loc) 786 B
import * as React from "react"; import { Store } from "redux"; import { CollectionData, LaneData } from "../interfaces"; export interface LanesProps { url: string; lanes?: LaneData[]; fetchCollection?: (url: string) => Promise<CollectionData>; clearCollection?: () => void; store?: Store<{ collection: CollectionData; }>; namespace?: string; proxyUrl?: string; hiddenBookIds?: string[]; hideMoreLinks?: boolean; isFetching?: boolean; } export declare class Lanes extends React.Component<any, any> { render(): JSX.Element; componentWillMount(): void; componentWillReceiveProps(newProps: any): void; componentWillUnmount(): void; } declare const ConnectedLanes: React.ComponentClass<any>; export default ConnectedLanes;