← Cloudflare Realtime / realtime / realtimekit / ui-kit / api-reference / core
rtk-transcript
A component which shows a transcript.
You need to remove the element after you receive the
rtkTranscriptDismiss event.
Properties
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
t |
RtkI18n |
❌ | useLanguage() |
Language |
transcript |
Transcript & { renderedId?: string } |
❌ | - | Message |
Usage Examples
Basic Usage
<rtk-transcript></rtk-transcript>With Properties
<rtk-transcript
transcript="example">
</rtk-transcript><script>
const el = document.querySelector("rtk-transcript");
el.transcript= {};
</script>