/** * Copyright © INOVUA TRADING. * * This source code is licensed under the Commercial License found in the * LICENSE file in the root directory of this source tree. */ import { IColumn } from '../../types'; import { TypeExpandedRows } from '../../types'; export default function (columns: any[], props: { enableRowExpand?: boolean; expandedRows?: TypeExpandedRows; defaultExpandedRows?: TypeExpandedRows; renderRowDetails?: (...args: any[]) => any; renderDetailsGrid?: (...args: any[]) => any; rowExpandColumn: IColumn | boolean; }): any[];