UNPKG

@true-directive/base

Version:

The set of base classes for the TrueDirective Grid

17 lines (16 loc) 411 B
/** * Copyright (c) 2018-2019 Aleksey Melnikov, True Directive Company. * @link https://truedirective.com/ * @license MIT */ import { Column } from './column.class'; /** * Column group */ export declare class ColumnBand { caption: string; columns: Column[]; width: number; constructor(caption: string, columns: Column[], width: number); removeColumn(c: Column): void; }