UNPKG

@nocobase/plugin-action-import

Version:

Import records using excel templates. You can configure which fields to import and templates will be generated automatically.

9 lines (8 loc) 270 B
import * as XLSX from 'xlsx'; import { Workbook as ExcelJSWorkbook } from 'exceljs'; export declare class WorkbookConverter { /** * Convert ExcelJS Workbook to XLSX Workbook */ static excelJSToXLSX(workbook: ExcelJSWorkbook): Promise<XLSX.WorkBook>; }