@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
15 lines (14 loc) • 366 B
TypeScript
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;
}