react-say-fork
Version:
# Goal and TODOs * Add Typescript support * Make compononents style-customizable
10 lines • 353 B
TypeScript
import { SayUtteranceProps } from './SayUtterance';
interface SayWithContextProps extends SayUtteranceProps {
ponyfill?: {
speechSynthesis: any;
SpeechSynthesisUtterance: any;
};
}
declare const SayWithContext: ({ ponyfill, ...props }: SayWithContextProps) => any;
export default SayWithContext;
//# sourceMappingURL=Say.d.ts.map