17 lines
459 B
TypeScript
17 lines
459 B
TypeScript
|
|
import { ColumnFormatDto, GridBoxOptionsDto, TagBoxOptionsDto } from '@/proxy/form'
|
||
|
|
import { DataGridTypes } from 'devextreme-react/data-grid'
|
||
|
|
|
||
|
|
interface IGridColumnData extends DataGridTypes.Column {
|
||
|
|
colData?: ColumnFormatDto
|
||
|
|
extras?: {
|
||
|
|
multiValue: boolean
|
||
|
|
editorOptions?: string
|
||
|
|
tagBoxOptions?: TagBoxOptionsDto
|
||
|
|
gridBoxOptions?: GridBoxOptionsDto
|
||
|
|
}
|
||
|
|
caption?: string
|
||
|
|
isBand?: boolean
|
||
|
|
}
|
||
|
|
|
||
|
|
export type GridColumnData = IGridColumnData
|