@koalarx/ui
Version:
Koala UI is a Design System developed in Angular whose objective is to facilitate and make your development faster and simpler, making this framework your greatest ally.
14 lines (13 loc) • 516 B
TypeScript
import { KoalaDynamicComponent } from '@koalarx/ui/dynamic-component';
export interface KoalaListItemInterface<DataType> {
label: string;
columnDef: string;
itemNameProperty?: (item: DataType) => string;
itemComponent?: (item: DataType) => KoalaDynamicComponent;
dblClick?: (item: DataType) => void;
sortHeader?: string;
footer?: {
itemNameProperty?: (responseRequest: any) => string;
itemComponent?: (responseRequest: any) => KoalaDynamicComponent;
};
}