@stratio/egeo
Version:
Stratio egeo library of components in Angular 2
22 lines (21 loc) • 552 B
TypeScript
import { TranslateableElement } from '../utils/egeo-resolver/egeo-resolve-model';
export interface StDropDownMenuItem {
label: string;
value: any;
icon?: string;
selected?: boolean;
}
export interface StDropDownMenuGroup {
title?: string;
items: StDropDownMenuItem[];
}
export interface StDropDownMenuItemSchema {
label: TranslateableElement;
value: any;
icon?: string;
selected?: boolean;
}
export interface StDropDownMenuGroupSchema {
title?: TranslateableElement;
items: StDropDownMenuItemSchema[];
}