mirror of
https://github.com/bitwarden/browser
synced 2026-02-07 20:24:01 +00:00
11 lines
247 B
TypeScript
11 lines
247 B
TypeScript
import { MappedDataToSignal } from "../shared/data-to-signal-type";
|
|
|
|
export interface Option<T> {
|
|
icon?: string;
|
|
value: T | null;
|
|
label?: string;
|
|
disabled?: boolean;
|
|
}
|
|
|
|
export type MappedOptionComponent<T> = MappedDataToSignal<Option<T>>;
|