Make type imports explicit

This commit is contained in:
hensm
2022-08-25 22:39:54 +01:00
parent 7a60bb3278
commit 3dcf8552f7
29 changed files with 71 additions and 58 deletions

View File

@@ -1,11 +1,14 @@
<script lang="ts">
import { createEventDispatcher, onMount } from "svelte";
import { PlayerState } from "../../cast/sdk/media/enums";
import { SenderMediaMessage, SenderMessage } from "../../cast/sdk/types";
import { ReceiverDevice } from "../../types";
import type { ReceiverDevice } from "../../types";
import type { Port } from "../../messaging";
import { Port } from "../../messaging";
import { PlayerState } from "../../cast/sdk/media/enums";
import type {
SenderMediaMessage,
SenderMessage
} from "../../cast/sdk/types";
import LoadingIndicator from "../LoadingIndicator.svelte";
import ReceiverMedia from "./ReceiverMedia.svelte";