Skip to content

Excel File Generation

Baran Baygan edited this page Apr 17, 2021 · 1 revision

To create an excel file you can call rbs.excel.request.FROM_JSON.

Action payload should be Array<ExcelSheetContent>. Key names are used for column names.

ExcelSheetContent

export interface ExcelSheetContent {
    sheetName?: string
    items: Array<any>
}