svogv
Version:
A decorator based approach for model driven forms, including an advanced DataGrid and a TreeView component.
19 lines (18 loc) • 442 B
TypeScript
export declare type StyleRules = {
[name: string]: string;
};
/**
* All styleable parts of the grid.
*/
export interface DatagridStyles {
first?: StyleRules;
middle?: StyleRules;
last?: StyleRules;
group?: StyleRules;
header?: StyleRules;
headerButton?: StyleRules;
headerSortButton?: StyleRules;
headerRemoveButton?: StyleRules;
footer?: StyleRules;
actionCell?: StyleRules;
}