UNPKG

react-search-bar-ks

Version:

A modern, animated voice-enabled search component built with React, TypeScript, and Framer Motion.

13 lines (12 loc) 266 B
interface Window { webkitSpeechRecognition: any; } interface SpeechRecognition { continuous: boolean; interimResults: boolean; onstart: () => void; onend: () => void; onresult: (event: any) => void; start: () => void; stop: () => void; }