Interface ITableColumn

interface ITableColumn {
    format?: string;
    label: string;
    name: string;
    required?: boolean;
    type?: string;
}

Properties

format?: string
label: string
name: string
required?: boolean
type?: string