import { IColunaGenerica } from './icm-coluna-generica'; import { IIconeGenerico } from './icm-icone-generico'; import { IRetornoBotao } from './icm-retorno-botao'; export interface IBotaoGenerico { id: number; icone: IIconeGenerico; aoClicar: (retorno: IRetornoBotao) => void; exibirSe?: (linha: any) => boolean; desabilitarSe?: (linha: any) => boolean; } export interface ITextoBotoesGenerico { texto: (linha: any) => string | number | Date; botoes: Array; } export interface IColunaTextoBotoes extends IColunaGenerica, ITextoBotoesGenerico { }