mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 23:33:31 +00:00
[CL-707] Migrate CL codebase to signals (#15340)
This commit is contained in:
5
libs/components/src/shared/data-to-signal-type.ts
Normal file
5
libs/components/src/shared/data-to-signal-type.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { Signal } from "@angular/core";
|
||||
|
||||
export type MappedDataToSignal<T> = {
|
||||
[Property in keyof T]: Signal<T[Property]>;
|
||||
};
|
||||
Reference in New Issue
Block a user