1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-12 06:23:38 +00:00

typecheck

This commit is contained in:
✨ Audrey ✨
2025-03-20 22:58:23 -04:00
parent 9f3d80255e
commit 8f7b08aa16
15 changed files with 40 additions and 28 deletions

View File

@@ -29,6 +29,8 @@ export class AchievementCard {
protected cardClass: string;
constructor() {
this.cardClass = "";
effect(() => {
const earned = this.earned();
const progress = this.progress();

View File

@@ -30,6 +30,8 @@ export class AchievementItem {
protected cardClass: string;
constructor() {
this.cardClass = "";
effect(() => {
const earned = this.earned();
const progress = this.progress();

View File

@@ -10,7 +10,7 @@ import { Icon, ToastService } from "@bitwarden/components";
import { AchievementNotifierService as AchievementNotifierServiceAbstraction } from "./achievement-notifier.abstraction";
import { AchievementIcon } from "./icons/achievement.icon";
import { iconMap } from "./icons/iconMap";
import { iconMap } from "./icons/icon-map";
export class AchievementNotifierService implements AchievementNotifierServiceAbstraction {
constructor(

View File

@@ -25,7 +25,7 @@ import {
import { AchievementItem } from "./achievement-item.component";
import { AchievementIcon } from "./icons/achievement.icon";
import { iconMap } from "./icons/iconMap";
import { iconMap } from "./icons/icon-map";
@Component({
selector: "achievements-list",