Compare commits

..

1 Commits

Author SHA1 Message Date
Elijah Duffy
b3a1419ed3 0.0.2 2026-02-02 18:44:46 -08:00

View File

@@ -1,9 +1,6 @@
<script lang="ts"> <script lang="ts">
import { onMount } from 'svelte'; import { onMount } from 'svelte';
import type { import { type JitsiMeetExternalAPIOptions, JitsiMeetExternalAPI } from './jitsi-iframe-api.js';
JitsiMeetExternalAPIOptions,
JitsiMeetExternalAPI
} from '$lib/jitsi-iframe-api.d.ts';
import type { ClassValue } from 'svelte/elements'; import type { ClassValue } from 'svelte/elements';
interface Props { interface Props {
@@ -37,7 +34,7 @@
} }
// Initialize the Jitsi Meet External API // Initialize the Jitsi Meet External API
api = new window.JitsiMeetExternalAPI(new URL(domain).host, { api = new JitsiMeetExternalAPI(new URL(domain).host, {
...options, ...options,
parentNode: container parentNode: container
}); });