projects/commons/src/lib/elements/lang-picker/interfaces/lang-picker.interface.ts
Properties |
| id |
id:
|
Type : string
|
| isActive |
isActive:
|
Type : boolean
|
| Optional |
| label |
label:
|
Type : string
|
export interface ILangPicker {
id: string;
label: string;
isActive?: boolean;
}