UNPKG

search_vid

Version:

CLI tool for searching subtitles and playing videos at specific timestamps

9 lines (8 loc) 235 B
import React from 'react'; import type { SearchOptions } from './types/index.js'; interface Props { query: string; options: SearchOptions; } export default function App({ query, options }: Props): React.JSX.Element; export {};