UNPKG

@memori.ai/memori-react

Version:

[![npm version](https://img.shields.io/github/package-json/v/memori-ai/memori-react)](https://www.npmjs.com/package/@memori.ai/memori-react) ![Tests](https://github.com/memori-ai/memori-react/workflows/CI/badge.svg?branch=main) ![TypeScript Support](https

15 lines (14 loc) 385 B
/// <reference types="react" /> export interface Props { useDefaultSentences?: boolean; lang?: 'en' | 'it'; sentence?: string; sentences?: { [lang: string]: { text: string; delayAfter: number; }[]; }; } declare const Typing: ({ useDefaultSentences, lang, sentence, sentences, }: Props) => JSX.Element; export default Typing;