Skip to content

Types

Transcribe feature types.

Interfaces

ChatBubbleProps

Defined in: src/features/transcribe/types.ts:20

Props for the ChatBubble component.

Properties

Property Type Defined in
msg Message src/features/transcribe/types.ts:21
onWordClick (sentence, word) => void src/features/transcribe/types.ts:22

Message

Defined in: src/features/transcribe/types.ts:8

A message in the transcribe chat.

Properties

Property Type Defined in
audioUrl? string src/features/transcribe/types.ts:13
id string src/features/transcribe/types.ts:9
isAudioMessage? boolean src/features/transcribe/types.ts:15
isTranscription? boolean src/features/transcribe/types.ts:16
loading? boolean src/features/transcribe/types.ts:14
text? string src/features/transcribe/types.ts:11
type "user" | "bot" src/features/transcribe/types.ts:10
words? JapaneseWord[] src/features/transcribe/types.ts:12