nope/resources/ui/layout/interfaces/ISelectionItem.ts

7 lines
222 B
TypeScript
Raw Normal View History

2020-10-29 18:20:42 +00:00
export interface ISelectionItem<T> {
label: string,
keywords: string,
template: T,
id?: string | number,
color?: 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'light' | 'light'
}