@senlinz/import-export-wasm 0.1.0-beta.20 → 0.1.0-beta.21
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/LICENSE +32 -32
- package/README.md +12 -12
- package/package.json +1 -1
- package/pkg/imexport_wasm.d.ts +276 -256
- package/pkg/imexport_wasm.js +1327 -1555
- package/pkg/imexport_wasm_bg.wasm +0 -0
package/pkg/imexport_wasm.d.ts
CHANGED
|
@@ -1,282 +1,302 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
|
|
4
|
-
export function importData(info: ExcelInfo, excel_bytes: Uint8Array): ExcelData;
|
|
5
|
-
export function exportData(info: ExcelInfo, data: ExcelData): Promise<any>;
|
|
3
|
+
|
|
6
4
|
export class ExcelCellFormat {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
5
|
+
free(): void;
|
|
6
|
+
[Symbol.dispose](): void;
|
|
7
|
+
constructor();
|
|
8
|
+
withAlign(align: string): ExcelCellFormat;
|
|
9
|
+
withAlignVertical(align_vertical: string): ExcelCellFormat;
|
|
10
|
+
withBackgroundColor(background_color: string): ExcelCellFormat;
|
|
11
|
+
withBold(bold: boolean): ExcelCellFormat;
|
|
12
|
+
withBorderColor(border_color: string): ExcelCellFormat;
|
|
13
|
+
withColor(color: string): ExcelCellFormat;
|
|
14
|
+
withDateFormat(date_format: string): ExcelCellFormat;
|
|
15
|
+
withFontSize(font_size: number): ExcelCellFormat;
|
|
16
|
+
withItalic(italic: boolean): ExcelCellFormat;
|
|
17
|
+
withRule(rule: string): ExcelCellFormat;
|
|
18
|
+
withStrikethrough(strikethrough: boolean): ExcelCellFormat;
|
|
19
|
+
withUnderline(underline: boolean): ExcelCellFormat;
|
|
20
|
+
withValue(value: string): ExcelCellFormat;
|
|
21
|
+
align_vertical: string;
|
|
22
|
+
align: string;
|
|
23
|
+
background_color: string;
|
|
24
|
+
bold: boolean;
|
|
25
|
+
get border_color(): string | undefined;
|
|
26
|
+
set border_color(value: string | null | undefined);
|
|
27
|
+
color: string;
|
|
28
|
+
get date_format(): string | undefined;
|
|
29
|
+
set date_format(value: string | null | undefined);
|
|
30
|
+
font_size: number;
|
|
31
|
+
italic: boolean;
|
|
32
|
+
rule: string;
|
|
33
|
+
strikethrough: boolean;
|
|
34
|
+
underline: boolean;
|
|
35
|
+
value: string;
|
|
37
36
|
}
|
|
37
|
+
|
|
38
38
|
export class ExcelColumnData {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
39
|
+
free(): void;
|
|
40
|
+
[Symbol.dispose](): void;
|
|
41
|
+
constructor(key: string, value: string);
|
|
42
|
+
static newGroup(group_name: string, value: string, children: ExcelRowData[]): ExcelColumnData;
|
|
43
|
+
static newRootGroup(group_name: string, children: ExcelRowData[]): ExcelColumnData;
|
|
44
|
+
withChildren(children: ExcelRowData[]): ExcelColumnData;
|
|
45
|
+
children: ExcelRowData[];
|
|
46
|
+
key: string;
|
|
47
|
+
value: string;
|
|
47
48
|
}
|
|
49
|
+
|
|
48
50
|
export class ExcelColumnInfo {
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
51
|
+
free(): void;
|
|
52
|
+
[Symbol.dispose](): void;
|
|
53
|
+
constructor(key: string, name: string);
|
|
54
|
+
withAllowedValues(allowed_values: string[]): ExcelColumnInfo;
|
|
55
|
+
withDataGroup(group: string): ExcelColumnInfo;
|
|
56
|
+
withDataGroupParent(group_parent: string): ExcelColumnInfo;
|
|
57
|
+
withDataType(data_type: string): ExcelColumnInfo;
|
|
58
|
+
withFormat(format: ExcelCellFormat): ExcelColumnInfo;
|
|
59
|
+
withNote(note: string): ExcelColumnInfo;
|
|
60
|
+
withParent(parent: string): ExcelColumnInfo;
|
|
61
|
+
withValueFormat(value_format: ExcelCellFormat[]): ExcelColumnInfo;
|
|
62
|
+
withWidth(width: number): ExcelColumnInfo;
|
|
63
|
+
allowed_values: string[];
|
|
64
|
+
data_group_parent: string;
|
|
65
|
+
data_group: string;
|
|
66
|
+
data_type: string;
|
|
67
|
+
get format(): ExcelCellFormat | undefined;
|
|
68
|
+
set format(value: ExcelCellFormat | null | undefined);
|
|
69
|
+
key: string;
|
|
70
|
+
name: string;
|
|
71
|
+
get note(): string | undefined;
|
|
72
|
+
set note(value: string | null | undefined);
|
|
73
|
+
parent: string;
|
|
74
|
+
value_format: ExcelCellFormat[];
|
|
75
|
+
width: number;
|
|
73
76
|
}
|
|
77
|
+
|
|
74
78
|
export class ExcelData {
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
79
|
+
free(): void;
|
|
80
|
+
[Symbol.dispose](): void;
|
|
81
|
+
constructor(rows: ExcelRowData[]);
|
|
82
|
+
rows: ExcelRowData[];
|
|
78
83
|
}
|
|
84
|
+
|
|
79
85
|
export class ExcelInfo {
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
86
|
+
free(): void;
|
|
87
|
+
[Symbol.dispose](): void;
|
|
88
|
+
constructor(name: string, sheet_name: string, columns: ExcelColumnInfo[], author: string, create_time: string);
|
|
89
|
+
withDefaultRowHeight(row_height: number): ExcelInfo;
|
|
90
|
+
withHeaderRowHeight(row_height: number): ExcelInfo;
|
|
91
|
+
withImageFetcher(fetcher: Function): ExcelInfo;
|
|
92
|
+
withIsHeaderFreeze(is_header_freeze: boolean): ExcelInfo;
|
|
93
|
+
withOffset(dx: number, dy: number): ExcelInfo;
|
|
94
|
+
withProgressCallback(callback: Function): ExcelInfo;
|
|
95
|
+
withTitle(title: string): ExcelInfo;
|
|
96
|
+
withTitleFormat(title_format: ExcelCellFormat): ExcelInfo;
|
|
97
|
+
withTitleHeight(title_height: number): ExcelInfo;
|
|
98
|
+
author: string;
|
|
99
|
+
columns: ExcelColumnInfo[];
|
|
100
|
+
create_time: string;
|
|
101
|
+
get default_row_height(): number | undefined;
|
|
102
|
+
set default_row_height(value: number | null | undefined);
|
|
103
|
+
dx: number;
|
|
104
|
+
dy: number;
|
|
105
|
+
get header_row_height(): number | undefined;
|
|
106
|
+
set header_row_height(value: number | null | undefined);
|
|
107
|
+
is_header_freeze: boolean;
|
|
108
|
+
name: string;
|
|
109
|
+
sheet_name: string;
|
|
110
|
+
get title_format(): ExcelCellFormat | undefined;
|
|
111
|
+
set title_format(value: ExcelCellFormat | null | undefined);
|
|
112
|
+
get title_height(): number | undefined;
|
|
113
|
+
set title_height(value: number | null | undefined);
|
|
114
|
+
get title(): string | undefined;
|
|
115
|
+
set title(value: string | null | undefined);
|
|
109
116
|
}
|
|
117
|
+
|
|
110
118
|
export class ExcelRowData {
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
119
|
+
free(): void;
|
|
120
|
+
[Symbol.dispose](): void;
|
|
121
|
+
constructor(columns: ExcelColumnData[]);
|
|
122
|
+
columns: ExcelColumnData[];
|
|
114
123
|
}
|
|
115
124
|
|
|
125
|
+
export function createTemplate(info: ExcelInfo): Uint8Array;
|
|
126
|
+
|
|
127
|
+
export function exportData(info: ExcelInfo, data: ExcelData): Promise<any>;
|
|
128
|
+
|
|
129
|
+
export function importData(info: ExcelInfo, excel_bytes: Uint8Array): ExcelData;
|
|
130
|
+
|
|
116
131
|
export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module;
|
|
117
132
|
|
|
118
133
|
export interface InitOutput {
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
134
|
+
readonly memory: WebAssembly.Memory;
|
|
135
|
+
readonly createTemplate: (a: number) => [number, number, number, number];
|
|
136
|
+
readonly exportData: (a: number, b: number) => any;
|
|
137
|
+
readonly importData: (a: number, b: number, c: number) => [number, number, number];
|
|
138
|
+
readonly __wbg_excelcellformat_free: (a: number, b: number) => void;
|
|
139
|
+
readonly __wbg_excelcolumninfo_free: (a: number, b: number) => void;
|
|
140
|
+
readonly __wbg_excelinfo_free: (a: number, b: number) => void;
|
|
141
|
+
readonly __wbg_get_excelcellformat_align: (a: number) => [number, number];
|
|
142
|
+
readonly __wbg_get_excelcellformat_align_vertical: (a: number) => [number, number];
|
|
143
|
+
readonly __wbg_get_excelcellformat_background_color: (a: number) => [number, number];
|
|
144
|
+
readonly __wbg_get_excelcellformat_bold: (a: number) => number;
|
|
145
|
+
readonly __wbg_get_excelcellformat_border_color: (a: number) => [number, number];
|
|
146
|
+
readonly __wbg_get_excelcellformat_color: (a: number) => [number, number];
|
|
147
|
+
readonly __wbg_get_excelcellformat_date_format: (a: number) => [number, number];
|
|
148
|
+
readonly __wbg_get_excelcellformat_font_size: (a: number) => number;
|
|
149
|
+
readonly __wbg_get_excelcellformat_italic: (a: number) => number;
|
|
150
|
+
readonly __wbg_get_excelcellformat_rule: (a: number) => [number, number];
|
|
151
|
+
readonly __wbg_get_excelcellformat_strikethrough: (a: number) => number;
|
|
152
|
+
readonly __wbg_get_excelcellformat_underline: (a: number) => number;
|
|
153
|
+
readonly __wbg_get_excelcellformat_value: (a: number) => [number, number];
|
|
154
|
+
readonly __wbg_get_excelcolumninfo_allowed_values: (a: number) => [number, number];
|
|
155
|
+
readonly __wbg_get_excelcolumninfo_data_group: (a: number) => [number, number];
|
|
156
|
+
readonly __wbg_get_excelcolumninfo_data_group_parent: (a: number) => [number, number];
|
|
157
|
+
readonly __wbg_get_excelcolumninfo_data_type: (a: number) => [number, number];
|
|
158
|
+
readonly __wbg_get_excelcolumninfo_format: (a: number) => number;
|
|
159
|
+
readonly __wbg_get_excelcolumninfo_key: (a: number) => [number, number];
|
|
160
|
+
readonly __wbg_get_excelcolumninfo_name: (a: number) => [number, number];
|
|
161
|
+
readonly __wbg_get_excelcolumninfo_note: (a: number) => [number, number];
|
|
162
|
+
readonly __wbg_get_excelcolumninfo_parent: (a: number) => [number, number];
|
|
163
|
+
readonly __wbg_get_excelcolumninfo_value_format: (a: number) => [number, number];
|
|
164
|
+
readonly __wbg_get_excelcolumninfo_width: (a: number) => number;
|
|
165
|
+
readonly __wbg_get_excelinfo_author: (a: number) => [number, number];
|
|
166
|
+
readonly __wbg_get_excelinfo_columns: (a: number) => [number, number];
|
|
167
|
+
readonly __wbg_get_excelinfo_create_time: (a: number) => [number, number];
|
|
168
|
+
readonly __wbg_get_excelinfo_default_row_height: (a: number) => [number, number];
|
|
169
|
+
readonly __wbg_get_excelinfo_dx: (a: number) => number;
|
|
170
|
+
readonly __wbg_get_excelinfo_dy: (a: number) => number;
|
|
171
|
+
readonly __wbg_get_excelinfo_header_row_height: (a: number) => [number, number];
|
|
172
|
+
readonly __wbg_get_excelinfo_is_header_freeze: (a: number) => number;
|
|
173
|
+
readonly __wbg_get_excelinfo_name: (a: number) => [number, number];
|
|
174
|
+
readonly __wbg_get_excelinfo_sheet_name: (a: number) => [number, number];
|
|
175
|
+
readonly __wbg_get_excelinfo_title: (a: number) => [number, number];
|
|
176
|
+
readonly __wbg_get_excelinfo_title_format: (a: number) => number;
|
|
177
|
+
readonly __wbg_get_excelinfo_title_height: (a: number) => [number, number];
|
|
178
|
+
readonly __wbg_set_excelcellformat_align: (a: number, b: number, c: number) => void;
|
|
179
|
+
readonly __wbg_set_excelcellformat_align_vertical: (a: number, b: number, c: number) => void;
|
|
180
|
+
readonly __wbg_set_excelcellformat_background_color: (a: number, b: number, c: number) => void;
|
|
181
|
+
readonly __wbg_set_excelcellformat_bold: (a: number, b: number) => void;
|
|
182
|
+
readonly __wbg_set_excelcellformat_border_color: (a: number, b: number, c: number) => void;
|
|
183
|
+
readonly __wbg_set_excelcellformat_color: (a: number, b: number, c: number) => void;
|
|
184
|
+
readonly __wbg_set_excelcellformat_date_format: (a: number, b: number, c: number) => void;
|
|
185
|
+
readonly __wbg_set_excelcellformat_font_size: (a: number, b: number) => void;
|
|
186
|
+
readonly __wbg_set_excelcellformat_italic: (a: number, b: number) => void;
|
|
187
|
+
readonly __wbg_set_excelcellformat_rule: (a: number, b: number, c: number) => void;
|
|
188
|
+
readonly __wbg_set_excelcellformat_strikethrough: (a: number, b: number) => void;
|
|
189
|
+
readonly __wbg_set_excelcellformat_underline: (a: number, b: number) => void;
|
|
190
|
+
readonly __wbg_set_excelcellformat_value: (a: number, b: number, c: number) => void;
|
|
191
|
+
readonly __wbg_set_excelcolumninfo_allowed_values: (a: number, b: number, c: number) => void;
|
|
192
|
+
readonly __wbg_set_excelcolumninfo_data_group: (a: number, b: number, c: number) => void;
|
|
193
|
+
readonly __wbg_set_excelcolumninfo_data_group_parent: (a: number, b: number, c: number) => void;
|
|
194
|
+
readonly __wbg_set_excelcolumninfo_data_type: (a: number, b: number, c: number) => void;
|
|
195
|
+
readonly __wbg_set_excelcolumninfo_format: (a: number, b: number) => void;
|
|
196
|
+
readonly __wbg_set_excelcolumninfo_key: (a: number, b: number, c: number) => void;
|
|
197
|
+
readonly __wbg_set_excelcolumninfo_name: (a: number, b: number, c: number) => void;
|
|
198
|
+
readonly __wbg_set_excelcolumninfo_note: (a: number, b: number, c: number) => void;
|
|
199
|
+
readonly __wbg_set_excelcolumninfo_parent: (a: number, b: number, c: number) => void;
|
|
200
|
+
readonly __wbg_set_excelcolumninfo_value_format: (a: number, b: number, c: number) => void;
|
|
201
|
+
readonly __wbg_set_excelcolumninfo_width: (a: number, b: number) => void;
|
|
202
|
+
readonly __wbg_set_excelinfo_author: (a: number, b: number, c: number) => void;
|
|
203
|
+
readonly __wbg_set_excelinfo_columns: (a: number, b: number, c: number) => void;
|
|
204
|
+
readonly __wbg_set_excelinfo_create_time: (a: number, b: number, c: number) => void;
|
|
205
|
+
readonly __wbg_set_excelinfo_default_row_height: (a: number, b: number, c: number) => void;
|
|
206
|
+
readonly __wbg_set_excelinfo_dx: (a: number, b: number) => void;
|
|
207
|
+
readonly __wbg_set_excelinfo_dy: (a: number, b: number) => void;
|
|
208
|
+
readonly __wbg_set_excelinfo_header_row_height: (a: number, b: number, c: number) => void;
|
|
209
|
+
readonly __wbg_set_excelinfo_is_header_freeze: (a: number, b: number) => void;
|
|
210
|
+
readonly __wbg_set_excelinfo_name: (a: number, b: number, c: number) => void;
|
|
211
|
+
readonly __wbg_set_excelinfo_sheet_name: (a: number, b: number, c: number) => void;
|
|
212
|
+
readonly __wbg_set_excelinfo_title: (a: number, b: number, c: number) => void;
|
|
213
|
+
readonly __wbg_set_excelinfo_title_format: (a: number, b: number) => void;
|
|
214
|
+
readonly __wbg_set_excelinfo_title_height: (a: number, b: number, c: number) => void;
|
|
215
|
+
readonly excelcellformat_new: () => number;
|
|
216
|
+
readonly excelcellformat_withAlign: (a: number, b: number, c: number) => number;
|
|
217
|
+
readonly excelcellformat_withAlignVertical: (a: number, b: number, c: number) => number;
|
|
218
|
+
readonly excelcellformat_withBackgroundColor: (a: number, b: number, c: number) => number;
|
|
219
|
+
readonly excelcellformat_withBold: (a: number, b: number) => number;
|
|
220
|
+
readonly excelcellformat_withBorderColor: (a: number, b: number, c: number) => number;
|
|
221
|
+
readonly excelcellformat_withColor: (a: number, b: number, c: number) => number;
|
|
222
|
+
readonly excelcellformat_withDateFormat: (a: number, b: number, c: number) => number;
|
|
223
|
+
readonly excelcellformat_withFontSize: (a: number, b: number) => number;
|
|
224
|
+
readonly excelcellformat_withItalic: (a: number, b: number) => number;
|
|
225
|
+
readonly excelcellformat_withRule: (a: number, b: number, c: number) => number;
|
|
226
|
+
readonly excelcellformat_withStrikethrough: (a: number, b: number) => number;
|
|
227
|
+
readonly excelcellformat_withUnderline: (a: number, b: number) => number;
|
|
228
|
+
readonly excelcellformat_withValue: (a: number, b: number, c: number) => number;
|
|
229
|
+
readonly excelcolumninfo_bind_new: (a: number, b: number, c: number, d: number) => number;
|
|
230
|
+
readonly excelcolumninfo_withAllowedValues: (a: number, b: number, c: number) => number;
|
|
231
|
+
readonly excelcolumninfo_withDataGroup: (a: number, b: number, c: number) => number;
|
|
232
|
+
readonly excelcolumninfo_withDataGroupParent: (a: number, b: number, c: number) => number;
|
|
233
|
+
readonly excelcolumninfo_withDataType: (a: number, b: number, c: number) => number;
|
|
234
|
+
readonly excelcolumninfo_withFormat: (a: number, b: number) => number;
|
|
235
|
+
readonly excelcolumninfo_withNote: (a: number, b: number, c: number) => number;
|
|
236
|
+
readonly excelcolumninfo_withParent: (a: number, b: number, c: number) => number;
|
|
237
|
+
readonly excelcolumninfo_withValueFormat: (a: number, b: number, c: number) => number;
|
|
238
|
+
readonly excelcolumninfo_withWidth: (a: number, b: number) => number;
|
|
239
|
+
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;
|
|
240
|
+
readonly excelinfo_withDefaultRowHeight: (a: number, b: number) => number;
|
|
241
|
+
readonly excelinfo_withHeaderRowHeight: (a: number, b: number) => number;
|
|
242
|
+
readonly excelinfo_withImageFetcher: (a: number, b: any) => number;
|
|
243
|
+
readonly excelinfo_withIsHeaderFreeze: (a: number, b: number) => number;
|
|
244
|
+
readonly excelinfo_withOffset: (a: number, b: number, c: number) => number;
|
|
245
|
+
readonly excelinfo_withProgressCallback: (a: number, b: any) => number;
|
|
246
|
+
readonly excelinfo_withTitle: (a: number, b: number, c: number) => number;
|
|
247
|
+
readonly excelinfo_withTitleFormat: (a: number, b: number) => number;
|
|
248
|
+
readonly excelinfo_withTitleHeight: (a: number, b: number) => number;
|
|
249
|
+
readonly __wbg_excelrowdata_free: (a: number, b: number) => void;
|
|
250
|
+
readonly __wbg_get_excelrowdata_columns: (a: number) => [number, number];
|
|
251
|
+
readonly __wbg_set_excelrowdata_columns: (a: number, b: number, c: number) => void;
|
|
252
|
+
readonly excelrowdata_new: (a: number, b: number) => number;
|
|
253
|
+
readonly __wbg_exceldata_free: (a: number, b: number) => void;
|
|
254
|
+
readonly __wbg_get_exceldata_rows: (a: number) => [number, number];
|
|
255
|
+
readonly __wbg_set_exceldata_rows: (a: number, b: number, c: number) => void;
|
|
256
|
+
readonly exceldata_new: (a: number, b: number) => number;
|
|
257
|
+
readonly __wbg_excelcolumndata_free: (a: number, b: number) => void;
|
|
258
|
+
readonly __wbg_get_excelcolumndata_children: (a: number) => [number, number];
|
|
259
|
+
readonly __wbg_get_excelcolumndata_key: (a: number) => [number, number];
|
|
260
|
+
readonly __wbg_get_excelcolumndata_value: (a: number) => [number, number];
|
|
261
|
+
readonly __wbg_set_excelcolumndata_children: (a: number, b: number, c: number) => void;
|
|
262
|
+
readonly __wbg_set_excelcolumndata_key: (a: number, b: number, c: number) => void;
|
|
263
|
+
readonly __wbg_set_excelcolumndata_value: (a: number, b: number, c: number) => void;
|
|
264
|
+
readonly excelcolumndata_bind_new: (a: number, b: number, c: number, d: number) => number;
|
|
265
|
+
readonly excelcolumndata_newGroup: (a: number, b: number, c: number, d: number, e: number, f: number) => number;
|
|
266
|
+
readonly excelcolumndata_newRootGroup: (a: number, b: number, c: number, d: number) => number;
|
|
267
|
+
readonly excelcolumndata_withChildren: (a: number, b: number, c: number) => number;
|
|
268
|
+
readonly wasm_bindgen__closure__destroy__h1014a67ffc8653bf: (a: number, b: number) => void;
|
|
269
|
+
readonly wasm_bindgen__convert__closures_____invoke__h70bb320d972e2f25: (a: number, b: number, c: any) => [number, number];
|
|
270
|
+
readonly wasm_bindgen__convert__closures_____invoke__h20e00ce5d1450bea: (a: number, b: number, c: any, d: any) => void;
|
|
271
|
+
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
272
|
+
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
273
|
+
readonly __wbindgen_exn_store: (a: number) => void;
|
|
274
|
+
readonly __externref_table_alloc: () => number;
|
|
275
|
+
readonly __wbindgen_externrefs: WebAssembly.Table;
|
|
276
|
+
readonly __externref_table_dealloc: (a: number) => void;
|
|
277
|
+
readonly __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
278
|
+
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
279
|
+
readonly __wbindgen_start: () => void;
|
|
261
280
|
}
|
|
262
281
|
|
|
263
282
|
export type SyncInitInput = BufferSource | WebAssembly.Module;
|
|
283
|
+
|
|
264
284
|
/**
|
|
265
|
-
* Instantiates the given `module`, which can either be bytes or
|
|
266
|
-
* a precompiled `WebAssembly.Module`.
|
|
267
|
-
*
|
|
268
|
-
* @param {{ module: SyncInitInput }} module - Passing `SyncInitInput` directly is deprecated.
|
|
269
|
-
*
|
|
270
|
-
* @returns {InitOutput}
|
|
271
|
-
*/
|
|
285
|
+
* Instantiates the given `module`, which can either be bytes or
|
|
286
|
+
* a precompiled `WebAssembly.Module`.
|
|
287
|
+
*
|
|
288
|
+
* @param {{ module: SyncInitInput }} module - Passing `SyncInitInput` directly is deprecated.
|
|
289
|
+
*
|
|
290
|
+
* @returns {InitOutput}
|
|
291
|
+
*/
|
|
272
292
|
export function initSync(module: { module: SyncInitInput } | SyncInitInput): InitOutput;
|
|
273
293
|
|
|
274
294
|
/**
|
|
275
|
-
* If `module_or_path` is {RequestInfo} or {URL}, makes a request and
|
|
276
|
-
* for everything else, calls `WebAssembly.instantiate` directly.
|
|
277
|
-
*
|
|
278
|
-
* @param {{ module_or_path: InitInput | Promise<InitInput> }} module_or_path - Passing `InitInput` directly is deprecated.
|
|
279
|
-
*
|
|
280
|
-
* @returns {Promise<InitOutput>}
|
|
281
|
-
*/
|
|
295
|
+
* If `module_or_path` is {RequestInfo} or {URL}, makes a request and
|
|
296
|
+
* for everything else, calls `WebAssembly.instantiate` directly.
|
|
297
|
+
*
|
|
298
|
+
* @param {{ module_or_path: InitInput | Promise<InitInput> }} module_or_path - Passing `InitInput` directly is deprecated.
|
|
299
|
+
*
|
|
300
|
+
* @returns {Promise<InitOutput>}
|
|
301
|
+
*/
|
|
282
302
|
export default function __wbg_init (module_or_path?: { module_or_path: InitInput | Promise<InitInput> } | InitInput | Promise<InitInput>): Promise<InitOutput>;
|