mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-11 01:59:58 +00:00
Make type imports explicit
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
} from "../../lib/bridge";
|
||||
import logger from "../../lib/logger";
|
||||
|
||||
import { Options } from "../../lib/options";
|
||||
import type { Options } from "../../lib/options";
|
||||
|
||||
const _ = browser.i18n.getMessage;
|
||||
|
||||
|
||||
@@ -1,10 +1,12 @@
|
||||
<script lang="ts">
|
||||
import { tick } from "svelte";
|
||||
|
||||
import knownApps, { KnownApp } from "../../cast/knownApps";
|
||||
import { WhitelistItemData } from "../../background/whitelist";
|
||||
import type { WhitelistItemData } from "../../background/whitelist";
|
||||
|
||||
import { REMOTE_MATCH_PATTERN_REGEX } from "../../lib/matchPattern";
|
||||
import { Options } from "../../lib/options";
|
||||
import type { Options } from "../../lib/options";
|
||||
|
||||
import knownApps, { KnownApp } from "../../cast/knownApps";
|
||||
|
||||
const _ = browser.i18n.getMessage;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user