noydb/oworms-ui

View on GitHub
src/app/model/select-option.interface.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface SelectOption {
    selected: boolean;
    value: string | number;
    label?: string;
    titleLabel?: string;
}