UNPKG

search_vid

Version:

CLI tool for searching subtitles and playing videos at specific timestamps

13 lines (12 loc) 465 B
import React from 'react'; import type { SearchResult, DisplayOptions } from '../types/index.js'; interface Props { results: SearchResult[]; query: string; options: DisplayOptions; onSelect: (result: SearchResult) => void; onNewSearch: (query: string, exactMatch: boolean) => void; onQuit: () => void; } export declare function SearchResults({ results, query, options, onSelect, onNewSearch, onQuit, }: Props): React.JSX.Element; export {};