mirror of
https://github.com/bitwarden/browser
synced 2026-01-02 16:43:19 +00:00
7 lines
107 B
TypeScript
7 lines
107 B
TypeScript
export interface Option<T> {
|
|
icon?: string;
|
|
value: T | null;
|
|
label?: string;
|
|
disabled?: boolean;
|
|
}
|