opds-web-client
Version:
14 lines (13 loc) • 385 B
TypeScript
import * as React from "react";
import "../stylesheets/lane.scss";
import { LaneData, BookData } from "../interfaces";
export interface LaneProps {
lane: LaneData;
collectionUrl?: string;
hideMoreLink?: boolean;
hiddenBookIds?: string[];
}
export default class Lane extends React.Component<LaneProps, any> {
render(): JSX.Element;
visibleBooks(): BookData[];
}