@senlinz/import-export-wasm 0.1.0-beta.10 → 0.1.0-beta.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/pkg/imexport_wasm.d.ts +177 -86
- package/pkg/imexport_wasm.js +1093 -174
- package/pkg/imexport_wasm_bg.wasm +0 -0
package/package.json
CHANGED
package/pkg/imexport_wasm.d.ts
CHANGED
|
@@ -1,92 +1,101 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* @param {ExcelInfo} info
|
|
5
|
-
* @returns {Uint8Array}
|
|
6
|
-
*/
|
|
7
3
|
export function createTemplate(info: ExcelInfo): Uint8Array;
|
|
8
|
-
/**
|
|
9
|
-
* @param {ExcelInfo} info
|
|
10
|
-
* @param {Uint8Array} excel_bytes
|
|
11
|
-
* @returns {ExcelData}
|
|
12
|
-
*/
|
|
13
4
|
export function importData(info: ExcelInfo, excel_bytes: Uint8Array): ExcelData;
|
|
14
|
-
/**
|
|
15
|
-
* @param {ExcelInfo} info
|
|
16
|
-
* @param {ExcelData} data
|
|
17
|
-
* @returns {Uint8Array}
|
|
18
|
-
*/
|
|
19
5
|
export function exportData(info: ExcelInfo, data: ExcelData): Uint8Array;
|
|
20
|
-
export
|
|
21
|
-
|
|
22
|
-
|
|
6
|
+
export class ExcelCellFormat {
|
|
7
|
+
free(): void;
|
|
8
|
+
constructor();
|
|
9
|
+
withRule(rule: string): ExcelCellFormat;
|
|
10
|
+
withValue(value: string): ExcelCellFormat;
|
|
11
|
+
withColor(color: string): ExcelCellFormat;
|
|
12
|
+
withBold(bold: boolean): ExcelCellFormat;
|
|
13
|
+
withItalic(italic: boolean): ExcelCellFormat;
|
|
14
|
+
withUnderline(underline: boolean): ExcelCellFormat;
|
|
15
|
+
withStrikethrough(strikethrough: boolean): ExcelCellFormat;
|
|
16
|
+
withFontSize(font_size: number): ExcelCellFormat;
|
|
17
|
+
withBackgroundColor(background_color: string): ExcelCellFormat;
|
|
18
|
+
withAlign(align: string): ExcelCellFormat;
|
|
19
|
+
withAlignVertical(align_vertical: string): ExcelCellFormat;
|
|
20
|
+
withDateFormat(date_format: string): ExcelCellFormat;
|
|
21
|
+
withBorderColor(border_color: string): ExcelCellFormat;
|
|
22
|
+
rule: string;
|
|
23
|
+
value: string;
|
|
24
|
+
color: string;
|
|
25
|
+
bold: boolean;
|
|
26
|
+
italic: boolean;
|
|
27
|
+
underline: boolean;
|
|
28
|
+
strikethrough: boolean;
|
|
29
|
+
font_size: number;
|
|
30
|
+
background_color: string;
|
|
31
|
+
align: string;
|
|
32
|
+
align_vertical: string;
|
|
33
|
+
date_format?: string;
|
|
34
|
+
border_color?: string;
|
|
23
35
|
}
|
|
24
36
|
export class ExcelColumnData {
|
|
25
37
|
free(): void;
|
|
26
|
-
/**
|
|
27
|
-
* @param {string} key
|
|
28
|
-
* @param {string} value
|
|
29
|
-
*/
|
|
30
38
|
constructor(key: string, value: string);
|
|
39
|
+
static newGroup(group_name: string, value: string, children: (ExcelRowData)[]): ExcelColumnData;
|
|
40
|
+
static newRootGroup(group_name: string, children: (ExcelRowData)[]): ExcelColumnData;
|
|
41
|
+
withChildren(children: (ExcelRowData)[]): ExcelColumnData;
|
|
31
42
|
key: string;
|
|
32
43
|
value: string;
|
|
44
|
+
children: (ExcelRowData)[];
|
|
33
45
|
}
|
|
34
46
|
export class ExcelColumnInfo {
|
|
35
47
|
free(): void;
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
/**
|
|
47
|
-
* @param {ExcelDataType} data_type
|
|
48
|
-
*/
|
|
49
|
-
setDataType(data_type: ExcelDataType): void;
|
|
50
|
-
/**
|
|
51
|
-
* @param {(string)[]} allowed_values
|
|
52
|
-
*/
|
|
53
|
-
setAllowedValues(allowed_values: (string)[]): void;
|
|
54
|
-
allowed_values?: (string)[];
|
|
55
|
-
data_type: ExcelDataType;
|
|
48
|
+
constructor(key: string, name: string);
|
|
49
|
+
withNote(note: string): ExcelColumnInfo;
|
|
50
|
+
withDataType(data_type: string): ExcelColumnInfo;
|
|
51
|
+
withAllowedValues(allowed_values: (string)[]): ExcelColumnInfo;
|
|
52
|
+
withWidth(width: number): ExcelColumnInfo;
|
|
53
|
+
withFormat(format: ExcelCellFormat): ExcelColumnInfo;
|
|
54
|
+
withParent(parent: string): ExcelColumnInfo;
|
|
55
|
+
withValueFormat(value_format: (ExcelCellFormat)[]): ExcelColumnInfo;
|
|
56
|
+
withDataGroup(group: string): ExcelColumnInfo;
|
|
57
|
+
withDataGroupParent(group_parent: string): ExcelColumnInfo;
|
|
56
58
|
key: string;
|
|
57
59
|
name: string;
|
|
60
|
+
width: number;
|
|
58
61
|
note?: string;
|
|
59
|
-
|
|
62
|
+
data_type: string;
|
|
63
|
+
allowed_values: (string)[];
|
|
64
|
+
parent: string;
|
|
65
|
+
format?: ExcelCellFormat;
|
|
66
|
+
value_format: (ExcelCellFormat)[];
|
|
67
|
+
data_group: string;
|
|
68
|
+
data_group_parent: string;
|
|
60
69
|
}
|
|
61
70
|
export class ExcelData {
|
|
62
71
|
free(): void;
|
|
63
|
-
/**
|
|
64
|
-
* @param {(ExcelRowData)[]} rows
|
|
65
|
-
*/
|
|
66
72
|
constructor(rows: (ExcelRowData)[]);
|
|
67
73
|
rows: (ExcelRowData)[];
|
|
68
74
|
}
|
|
69
75
|
export class ExcelInfo {
|
|
70
76
|
free(): void;
|
|
71
|
-
/**
|
|
72
|
-
* @param {string} name
|
|
73
|
-
* @param {string} sheet_name
|
|
74
|
-
* @param {(ExcelColumnInfo)[]} columns
|
|
75
|
-
* @param {string} author
|
|
76
|
-
* @param {string} create_time
|
|
77
|
-
*/
|
|
78
77
|
constructor(name: string, sheet_name: string, columns: (ExcelColumnInfo)[], author: string, create_time: string);
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
78
|
+
withTitle(title: string): ExcelInfo;
|
|
79
|
+
withDefaultRowHeight(row_height: number): ExcelInfo;
|
|
80
|
+
withTitleHeight(title_height: number): ExcelInfo;
|
|
81
|
+
withTitleFormat(title_format: ExcelCellFormat): ExcelInfo;
|
|
82
|
+
withOffset(dx: number, dy: number): ExcelInfo;
|
|
83
|
+
withIsHeaderFreeze(is_header_freeze: boolean): ExcelInfo;
|
|
82
84
|
name: string;
|
|
83
85
|
sheet_name: string;
|
|
86
|
+
columns: (ExcelColumnInfo)[];
|
|
87
|
+
author: string;
|
|
88
|
+
create_time: string;
|
|
89
|
+
title?: string;
|
|
90
|
+
title_format?: ExcelCellFormat;
|
|
91
|
+
title_height?: number;
|
|
92
|
+
default_row_height?: number;
|
|
93
|
+
dx: number;
|
|
94
|
+
dy: number;
|
|
95
|
+
is_header_freeze: boolean;
|
|
84
96
|
}
|
|
85
97
|
export class ExcelRowData {
|
|
86
98
|
free(): void;
|
|
87
|
-
/**
|
|
88
|
-
* @param {(ExcelColumnData)[]} columns
|
|
89
|
-
*/
|
|
90
99
|
constructor(columns: (ExcelColumnData)[]);
|
|
91
100
|
columns: (ExcelColumnData)[];
|
|
92
101
|
}
|
|
@@ -95,52 +104,134 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
|
|
|
95
104
|
|
|
96
105
|
export interface InitOutput {
|
|
97
106
|
readonly memory: WebAssembly.Memory;
|
|
98
|
-
readonly
|
|
99
|
-
readonly
|
|
100
|
-
readonly
|
|
101
|
-
readonly __wbg_get_excelcolumndata_value: (a: number, b: number) => void;
|
|
102
|
-
readonly __wbg_set_excelcolumndata_value: (a: number, b: number, c: number) => void;
|
|
103
|
-
readonly excelcolumndata_new: (a: number, b: number, c: number, d: number) => number;
|
|
104
|
-
readonly __wbg_excelrowdata_free: (a: number, b: number) => void;
|
|
105
|
-
readonly __wbg_get_excelrowdata_columns: (a: number, b: number) => void;
|
|
106
|
-
readonly __wbg_set_excelrowdata_columns: (a: number, b: number, c: number) => void;
|
|
107
|
-
readonly excelrowdata_new: (a: number, b: number) => number;
|
|
107
|
+
readonly createTemplate: (a: number, b: number) => void;
|
|
108
|
+
readonly importData: (a: number, b: number, c: number, d: number) => void;
|
|
109
|
+
readonly exportData: (a: number, b: number, c: number) => void;
|
|
108
110
|
readonly __wbg_exceldata_free: (a: number, b: number) => void;
|
|
109
111
|
readonly __wbg_get_exceldata_rows: (a: number, b: number) => void;
|
|
110
112
|
readonly __wbg_set_exceldata_rows: (a: number, b: number, c: number) => void;
|
|
111
113
|
readonly exceldata_new: (a: number, b: number) => number;
|
|
112
114
|
readonly __wbg_excelinfo_free: (a: number, b: number) => void;
|
|
113
|
-
readonly __wbg_get_excelinfo_name: (a: number, b: number) => void;
|
|
114
|
-
readonly __wbg_set_excelinfo_name: (a: number, b: number, c: number) => void;
|
|
115
|
-
readonly __wbg_get_excelinfo_sheet_name: (a: number, b: number) => void;
|
|
116
|
-
readonly __wbg_set_excelinfo_sheet_name: (a: number, b: number, c: number) => void;
|
|
117
115
|
readonly __wbg_get_excelinfo_columns: (a: number, b: number) => void;
|
|
118
116
|
readonly __wbg_set_excelinfo_columns: (a: number, b: number, c: number) => void;
|
|
119
|
-
readonly __wbg_get_excelinfo_author: (a: number, b: number) => void;
|
|
120
|
-
readonly __wbg_set_excelinfo_author: (a: number, b: number, c: number) => void;
|
|
121
117
|
readonly __wbg_get_excelinfo_create_time: (a: number, b: number) => void;
|
|
122
118
|
readonly __wbg_set_excelinfo_create_time: (a: number, b: number, c: number) => void;
|
|
123
|
-
readonly
|
|
119
|
+
readonly __wbg_get_excelinfo_title: (a: number, b: number) => void;
|
|
120
|
+
readonly __wbg_set_excelinfo_title: (a: number, b: number, c: number) => void;
|
|
121
|
+
readonly __wbg_get_excelinfo_title_format: (a: number) => number;
|
|
122
|
+
readonly __wbg_set_excelinfo_title_format: (a: number, b: number) => void;
|
|
123
|
+
readonly __wbg_get_excelinfo_title_height: (a: number, b: number) => void;
|
|
124
|
+
readonly __wbg_set_excelinfo_title_height: (a: number, b: number, c: number) => void;
|
|
125
|
+
readonly __wbg_get_excelinfo_default_row_height: (a: number, b: number) => void;
|
|
126
|
+
readonly __wbg_set_excelinfo_default_row_height: (a: number, b: number, c: number) => void;
|
|
127
|
+
readonly __wbg_get_excelinfo_dx: (a: number) => number;
|
|
128
|
+
readonly __wbg_set_excelinfo_dx: (a: number, b: number) => void;
|
|
129
|
+
readonly __wbg_get_excelinfo_dy: (a: number) => number;
|
|
130
|
+
readonly __wbg_set_excelinfo_dy: (a: number, b: number) => void;
|
|
131
|
+
readonly __wbg_get_excelinfo_is_header_freeze: (a: number) => number;
|
|
132
|
+
readonly __wbg_set_excelinfo_is_header_freeze: (a: number, b: number) => void;
|
|
133
|
+
readonly excelinfo_bind_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number) => number;
|
|
134
|
+
readonly excelinfo_withTitle: (a: number, b: number, c: number) => number;
|
|
135
|
+
readonly excelinfo_withDefaultRowHeight: (a: number, b: number) => number;
|
|
136
|
+
readonly excelinfo_withTitleHeight: (a: number, b: number) => number;
|
|
137
|
+
readonly excelinfo_withTitleFormat: (a: number, b: number) => number;
|
|
138
|
+
readonly excelinfo_withOffset: (a: number, b: number, c: number) => number;
|
|
139
|
+
readonly excelinfo_withIsHeaderFreeze: (a: number, b: number) => number;
|
|
140
|
+
readonly __wbg_excelcellformat_free: (a: number, b: number) => void;
|
|
141
|
+
readonly __wbg_get_excelcellformat_rule: (a: number, b: number) => void;
|
|
142
|
+
readonly __wbg_set_excelcellformat_rule: (a: number, b: number, c: number) => void;
|
|
143
|
+
readonly __wbg_get_excelcellformat_value: (a: number, b: number) => void;
|
|
144
|
+
readonly __wbg_set_excelcellformat_value: (a: number, b: number, c: number) => void;
|
|
145
|
+
readonly __wbg_get_excelcellformat_color: (a: number, b: number) => void;
|
|
146
|
+
readonly __wbg_set_excelcellformat_color: (a: number, b: number, c: number) => void;
|
|
147
|
+
readonly __wbg_get_excelcellformat_bold: (a: number) => number;
|
|
148
|
+
readonly __wbg_set_excelcellformat_bold: (a: number, b: number) => void;
|
|
149
|
+
readonly __wbg_get_excelcellformat_italic: (a: number) => number;
|
|
150
|
+
readonly __wbg_set_excelcellformat_italic: (a: number, b: number) => void;
|
|
151
|
+
readonly __wbg_get_excelcellformat_underline: (a: number) => number;
|
|
152
|
+
readonly __wbg_set_excelcellformat_underline: (a: number, b: number) => void;
|
|
153
|
+
readonly __wbg_get_excelcellformat_strikethrough: (a: number) => number;
|
|
154
|
+
readonly __wbg_set_excelcellformat_strikethrough: (a: number, b: number) => void;
|
|
155
|
+
readonly __wbg_get_excelcellformat_font_size: (a: number) => number;
|
|
156
|
+
readonly __wbg_set_excelcellformat_font_size: (a: number, b: number) => void;
|
|
157
|
+
readonly __wbg_get_excelcellformat_background_color: (a: number, b: number) => void;
|
|
158
|
+
readonly __wbg_set_excelcellformat_background_color: (a: number, b: number, c: number) => void;
|
|
159
|
+
readonly __wbg_get_excelcellformat_align: (a: number, b: number) => void;
|
|
160
|
+
readonly __wbg_set_excelcellformat_align: (a: number, b: number, c: number) => void;
|
|
161
|
+
readonly __wbg_get_excelcellformat_align_vertical: (a: number, b: number) => void;
|
|
162
|
+
readonly __wbg_set_excelcellformat_align_vertical: (a: number, b: number, c: number) => void;
|
|
163
|
+
readonly __wbg_get_excelcellformat_date_format: (a: number, b: number) => void;
|
|
164
|
+
readonly __wbg_set_excelcellformat_date_format: (a: number, b: number, c: number) => void;
|
|
165
|
+
readonly __wbg_get_excelcellformat_border_color: (a: number, b: number) => void;
|
|
166
|
+
readonly __wbg_set_excelcellformat_border_color: (a: number, b: number, c: number) => void;
|
|
167
|
+
readonly excelcellformat_new: () => number;
|
|
168
|
+
readonly excelcellformat_withRule: (a: number, b: number, c: number) => number;
|
|
169
|
+
readonly excelcellformat_withValue: (a: number, b: number, c: number) => number;
|
|
170
|
+
readonly excelcellformat_withColor: (a: number, b: number, c: number) => number;
|
|
171
|
+
readonly excelcellformat_withBold: (a: number, b: number) => number;
|
|
172
|
+
readonly excelcellformat_withItalic: (a: number, b: number) => number;
|
|
173
|
+
readonly excelcellformat_withUnderline: (a: number, b: number) => number;
|
|
174
|
+
readonly excelcellformat_withStrikethrough: (a: number, b: number) => number;
|
|
175
|
+
readonly excelcellformat_withFontSize: (a: number, b: number) => number;
|
|
176
|
+
readonly excelcellformat_withBackgroundColor: (a: number, b: number, c: number) => number;
|
|
177
|
+
readonly excelcellformat_withAlign: (a: number, b: number, c: number) => number;
|
|
178
|
+
readonly excelcellformat_withAlignVertical: (a: number, b: number, c: number) => number;
|
|
179
|
+
readonly excelcellformat_withDateFormat: (a: number, b: number, c: number) => number;
|
|
180
|
+
readonly excelcellformat_withBorderColor: (a: number, b: number, c: number) => number;
|
|
124
181
|
readonly __wbg_excelcolumninfo_free: (a: number, b: number) => void;
|
|
125
182
|
readonly __wbg_get_excelcolumninfo_key: (a: number, b: number) => void;
|
|
126
183
|
readonly __wbg_set_excelcolumninfo_key: (a: number, b: number, c: number) => void;
|
|
127
184
|
readonly __wbg_get_excelcolumninfo_name: (a: number, b: number) => void;
|
|
128
185
|
readonly __wbg_set_excelcolumninfo_name: (a: number, b: number, c: number) => void;
|
|
129
|
-
readonly __wbg_get_excelcolumninfo_width: (a: number
|
|
130
|
-
readonly __wbg_set_excelcolumninfo_width: (a: number, b: number
|
|
186
|
+
readonly __wbg_get_excelcolumninfo_width: (a: number) => number;
|
|
187
|
+
readonly __wbg_set_excelcolumninfo_width: (a: number, b: number) => void;
|
|
131
188
|
readonly __wbg_get_excelcolumninfo_note: (a: number, b: number) => void;
|
|
132
189
|
readonly __wbg_set_excelcolumninfo_note: (a: number, b: number, c: number) => void;
|
|
133
|
-
readonly __wbg_get_excelcolumninfo_data_type: (a: number) =>
|
|
134
|
-
readonly __wbg_set_excelcolumninfo_data_type: (a: number, b: number) => void;
|
|
190
|
+
readonly __wbg_get_excelcolumninfo_data_type: (a: number, b: number) => void;
|
|
191
|
+
readonly __wbg_set_excelcolumninfo_data_type: (a: number, b: number, c: number) => void;
|
|
135
192
|
readonly __wbg_get_excelcolumninfo_allowed_values: (a: number, b: number) => void;
|
|
136
193
|
readonly __wbg_set_excelcolumninfo_allowed_values: (a: number, b: number, c: number) => void;
|
|
137
|
-
readonly
|
|
138
|
-
readonly
|
|
139
|
-
readonly
|
|
140
|
-
readonly
|
|
141
|
-
readonly
|
|
142
|
-
readonly
|
|
143
|
-
readonly
|
|
194
|
+
readonly __wbg_get_excelcolumninfo_parent: (a: number, b: number) => void;
|
|
195
|
+
readonly __wbg_set_excelcolumninfo_parent: (a: number, b: number, c: number) => void;
|
|
196
|
+
readonly __wbg_get_excelcolumninfo_format: (a: number) => number;
|
|
197
|
+
readonly __wbg_set_excelcolumninfo_format: (a: number, b: number) => void;
|
|
198
|
+
readonly __wbg_get_excelcolumninfo_value_format: (a: number, b: number) => void;
|
|
199
|
+
readonly __wbg_set_excelcolumninfo_value_format: (a: number, b: number, c: number) => void;
|
|
200
|
+
readonly __wbg_get_excelcolumninfo_data_group: (a: number, b: number) => void;
|
|
201
|
+
readonly __wbg_set_excelcolumninfo_data_group: (a: number, b: number, c: number) => void;
|
|
202
|
+
readonly __wbg_get_excelcolumninfo_data_group_parent: (a: number, b: number) => void;
|
|
203
|
+
readonly __wbg_set_excelcolumninfo_data_group_parent: (a: number, b: number, c: number) => void;
|
|
204
|
+
readonly excelcolumninfo_bind_new: (a: number, b: number, c: number, d: number) => number;
|
|
205
|
+
readonly excelcolumninfo_withNote: (a: number, b: number, c: number) => number;
|
|
206
|
+
readonly excelcolumninfo_withDataType: (a: number, b: number, c: number) => number;
|
|
207
|
+
readonly excelcolumninfo_withAllowedValues: (a: number, b: number, c: number) => number;
|
|
208
|
+
readonly excelcolumninfo_withWidth: (a: number, b: number) => number;
|
|
209
|
+
readonly excelcolumninfo_withFormat: (a: number, b: number) => number;
|
|
210
|
+
readonly excelcolumninfo_withParent: (a: number, b: number, c: number) => number;
|
|
211
|
+
readonly excelcolumninfo_withValueFormat: (a: number, b: number, c: number) => number;
|
|
212
|
+
readonly excelcolumninfo_withDataGroup: (a: number, b: number, c: number) => number;
|
|
213
|
+
readonly excelcolumninfo_withDataGroupParent: (a: number, b: number, c: number) => number;
|
|
214
|
+
readonly __wbg_get_excelinfo_name: (a: number, b: number) => void;
|
|
215
|
+
readonly __wbg_get_excelinfo_sheet_name: (a: number, b: number) => void;
|
|
216
|
+
readonly __wbg_get_excelinfo_author: (a: number, b: number) => void;
|
|
217
|
+
readonly __wbg_set_excelinfo_name: (a: number, b: number, c: number) => void;
|
|
218
|
+
readonly __wbg_set_excelinfo_sheet_name: (a: number, b: number, c: number) => void;
|
|
219
|
+
readonly __wbg_set_excelinfo_author: (a: number, b: number, c: number) => void;
|
|
220
|
+
readonly __wbg_excelcolumndata_free: (a: number, b: number) => void;
|
|
221
|
+
readonly __wbg_get_excelcolumndata_key: (a: number, b: number) => void;
|
|
222
|
+
readonly __wbg_set_excelcolumndata_key: (a: number, b: number, c: number) => void;
|
|
223
|
+
readonly __wbg_get_excelcolumndata_value: (a: number, b: number) => void;
|
|
224
|
+
readonly __wbg_set_excelcolumndata_value: (a: number, b: number, c: number) => void;
|
|
225
|
+
readonly __wbg_get_excelcolumndata_children: (a: number, b: number) => void;
|
|
226
|
+
readonly __wbg_set_excelcolumndata_children: (a: number, b: number, c: number) => void;
|
|
227
|
+
readonly excelcolumndata_bind_new: (a: number, b: number, c: number, d: number) => number;
|
|
228
|
+
readonly excelcolumndata_newGroup: (a: number, b: number, c: number, d: number, e: number, f: number) => number;
|
|
229
|
+
readonly excelcolumndata_newRootGroup: (a: number, b: number, c: number, d: number) => number;
|
|
230
|
+
readonly excelcolumndata_withChildren: (a: number, b: number, c: number) => number;
|
|
231
|
+
readonly __wbg_excelrowdata_free: (a: number, b: number) => void;
|
|
232
|
+
readonly __wbg_get_excelrowdata_columns: (a: number, b: number) => void;
|
|
233
|
+
readonly __wbg_set_excelrowdata_columns: (a: number, b: number, c: number) => void;
|
|
234
|
+
readonly excelrowdata_new: (a: number, b: number) => number;
|
|
144
235
|
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
145
236
|
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
146
237
|
readonly __wbindgen_add_to_stack_pointer: (a: number) => number;
|