in Kendo excel export version 5, I was able to use the CellOptions interface found in CellOptions.d.ts. This allowed me to create a shortcut const that could be used across my app for standard cellOptions:
import { CellOptions } from "@progress/kendo-react-excel-export/dist/npm/ooxml/CellOptionsInterface";
export const cellOptions: CellOptions = { verticalAlign: "center", textAlign: "center" };
then use it like this:
<ExcelExportColumn field="ID" title="ID" {...columnOptions} width={100} />
However, in version 7 (and I'm guessing 8), that CellOptions interface has been moved to index.d.ts and is not exported from the types.
/**
* The options for the Excel Export cell.
*/
declare interface CellOptions { ... }
Is there some way I can export or use this to create the same kind of shortcut? Thank you.