sheetex - v1.3.0
    Preparing search index...

    Type Alias DataCell

    DataCell: number | string | { value: number | string; style?: string }

    数据单元格

    const cellA1 = 82;
    const cellA2 = 'Hello';
    const cellA3 = {value: 'Hello', style: 'bold'};

    可以是简单的数字、字符串,也可以是带样式名称的对象