-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathcolumn-model.d.ts
52 lines (40 loc) · 1.52 KB
/
column-model.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import { merge, isNullOrUndefined, extend, Property } from '@syncfusion/ej2-base';import { NumberFormatOptions, DateFormatOptions } from '@syncfusion/ej2-base';import { DataManager, Query, DataUtil } from '@syncfusion/ej2-data';import { ICellFormatter, IFilterUI, IEditCell, CommandModel, IFilter, CommandButtonOptions, DataResult, IGrid } from '../base/interface';import { TextAlign, ClipMode, Action, SortDirection, CommandButtonType, freezeDirection, freezeTable } from '../base/enum';import { PredicateModel } from '../base/grid-model';import { ValueFormatter } from '../services/value-formatter';import { ValueAccessor, SortComparer, HeaderValueAccessor } from '../base/type';import { getUid, templateCompiler, getForeignData, getObject } from '../base/util';
import {ColumnModel} from "./column";
/**
* Interface for a class Column
*/
export interface ColumnModel {
}
/**
* Interface for a class CommandColumnModel
*/
export interface CommandColumnModelModel {
/**
* Define the command Button tooltip.
*/
title?: string;
/**
* Define the command Button type.
*/
type?: CommandButtonType;
/**
* Define the button model
*/
buttonOption?: CommandButtonOptions;
}
/**
* Interface for a class GridColumn
*/
export interface GridColumnModel extends ColumnModel{
/**
* Defines stacked columns
*
* @default null
*/
columns?: string[] | ColumnModel[];
}
/**
* Interface for a class StackedColumn
*/
export interface StackedColumnModel extends GridColumnModel{
}