Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
smp-table-coldef.model.ts 261 B
Newer Older
/**
 * Interface for the column definition of the SMP table columns
 * @since 5.1
 */
export interface SmpTableColDef {
  columnDef: string;
  header: string;
  cell?: (row: any) => any;
  tooltip?: (row: any) => any;
  style?:string;
  headerStyle?: string;