UNPKG

@omnia/fx-models

Version:
15 lines (14 loc) 366 B
import { VDataGridHeaderAlign, VDataGridHeaderType } from "."; export interface VDataGridHeader { text: string; align: VDataGridHeaderAlign; value?: string; type?: VDataGridHeaderType; width?: string | number; } export interface VDataGridItemScopedSlot<TItem> { item: TItem; index: number; selected: boolean; expanded: boolean; }