muryshev's picture
init
79278ec
raw
history blame contribute delete
204 Bytes
import { DocumentDataType } from "@/api/predictions/types";
export interface SearchResultsItemProps {
handleRead: (document: DocumentDataType) => void;
document: DocumentDataType;
index: number;
}