noushmac/ngx-magic-table

View on GitHub
projects/ngx-magic-table/src/lib/models/cells-info.ts

Summary

Maintainability
A
0 mins
Test Coverage
export class CellsInfo  {
    index: number;
    name: string;
    cellWidth: number;
    draggble: boolean;
    sortable: boolean;
    parent: string;
    visible: boolean;
}