UNPKG

solrkit

Version:

![Build Status](https://travis-ci.org/garysieling/solrkit.svg?branch=master) ![Dependencies](https://david-dm.org/garysieling/solrkit/status.svg)

13 lines (12 loc) 385 B
/// <reference types="react" /> import * as React from 'react'; import { SingleComponent } from '../context/DataStore'; interface MoreLikeThisProps<T> { docs: T[]; title?: string; render: SingleComponent<T>; } declare class MoreLikeThis<T> extends React.Component<MoreLikeThisProps<T>> { render(): JSX.Element; } export { MoreLikeThisProps, MoreLikeThis };