Skip to content

Commit 505f9dd

Browse files
committed
Remove unused imports.
1 parent 99d3cd0 commit 505f9dd

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

scripts/rs-config.d.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
* License, v. 2.0. If a copy of the MPL was not distributed with this
33
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
44

5-
import type { RS_BASE_URLS } from "./rs-config.js";
6-
75
export type RSEnvironment = "dev" | "stage" | "prod";
86

97
export function isRSEnvValid(env: string | null): env is RSEnvironment;

src/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import { LitElement, html, css } from "lit";
66
import { customElement, state } from "lit/decorators.js";
77
import { ExceptionListEntry, BugMetaMap, FirefoxChannel, FirefoxVersions } from "./types";
8-
import { getRSEndpoint, RSEnvironment, isRSEnvValid } from "../scripts/rs-config.js";
8+
import { getRSEndpoint, RSEnvironment } from "../scripts/rs-config.js";
99
import "./exceptions-table/exceptions-table";
1010
import "./exceptions-table/top-exceptions-table";
1111
import "./github-corner";

0 commit comments

Comments
 (0)