UNPKG

t-comm

Version:

专业、稳定、纯粹的工具库

13 lines (12 loc) 292 B
import type * as XLSX from 'xlsx'; /** * 获取 xlsx 库 * xlsx 是一个用于处理 Excel 文件的第三方库 * @returns xlsx 库 * @example * ```ts * const XLSX = getXlsx(); * const workbook = XLSX.readFile('data.xlsx'); * ``` */ export declare function getXlsx(): typeof XLSX;