1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-01-14 20:01:31 +01:00

[CL] add ToastVariant to CL barrel file (#12804)

This commit is contained in:
Nick Krantz 2025-01-10 08:58:47 -06:00 committed by GitHub
parent d64cfb67e2
commit fa61928daf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -4,8 +4,7 @@ import { Directive, HostListener, Input } from "@angular/core";
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service";
import { ToastService } from "@bitwarden/components";
import { ToastVariant } from "@bitwarden/components/src/toast/toast.component";
import { ToastService, ToastVariant } from "@bitwarden/components";
@Directive({
selector: "[appCopyClick]",

View File

@ -1,2 +1,3 @@
export * from "./toast.module";
export * from "./toast.service";
export type { ToastVariant } from "./toast.component";