/** @format */ import { NgxMatDatatableComponent } from '../datatable.component'; type BaseAction = { position: 'start' | 'center' | 'end'; }; export type IconAction = BaseAction & { kind: 'icon'; icon: string; onclick: (datagrid: NgxMatDatatableComponent) => void; tooltip?: string; color?: string; }; export type TemplateAction = BaseAction & { kind: 'template'; contentId: string; }; export type Action = IconAction | TemplateAction; export {};