Skip to content

Commit

Permalink
Mark types as type
Browse files Browse the repository at this point in the history
  • Loading branch information
eyeseast committed Jan 29, 2024
1 parent 2ea42f5 commit 2b051c4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/pages/app/accounts/AccountNavigation.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import HelpMenu from "./HelpMenu.svelte";
import UserMenu from "./UserMenu.svelte";
import OrgMenu from "./OrgMenu.svelte";
import { User, Org } from "./types";
import type { User, Org } from "./types";
let user: User | null = null;
let org: Org | null = null;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/app/accounts/OrgMenu.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import Menu from "../../../common/Menu.svelte";
import MenuTitle from "../../../common/MenuTitle.svelte";
import Loader from "../../../common/Loader.svelte";
import { User, Org } from "./types";
import type { User, Org } from "./types";
import OrgMemberList from "./OrgMemberList.svelte";
import {
changeActive,
Expand Down
2 changes: 1 addition & 1 deletion src/pages/app/accounts/OrgPicker.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import MenuItem from "../../../common/MenuItem.svelte";
import Loader from "../../../common/Loader.svelte";
import { Org } from "./types";
import type { Org } from "./types";
export let activeOrg: Org;
export let loading = false;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/app/accounts/PremiumMenu.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import { Plug16, Organization16 } from "svelte-octicons";
import { SQUARELET_URL } from "../../../api/auth";
import { Org } from "./types";
import type { Org } from "./types";
import MenuInsert from "../../../common/MenuInsert.svelte";
import {
isPremiumOrg,
Expand Down
2 changes: 1 addition & 1 deletion src/pages/app/accounts/UserMenu.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
SIGN_OUT_URL,
} from "../../../api/auth.js";
import { showMailkeySelected } from "../../../manager/manager.js";
import { Maybe, User } from "./types";
import type { Maybe, User } from "./types";
export let user: Maybe<User>;
Expand Down

0 comments on commit 2b051c4

Please sign in to comment.