@techui/scifi 0.0.7-alpha.7 → 0.1.0-alpha.1
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/README.md +55 -8
- package/UPDATE.md +26 -2
- package/core/core.d.ts +328 -203
- package/core/core.js +1272 -1265
- package/core/core_bg.wasm +0 -0
- package/core/core_bg.wasm.d.ts +66 -65
- package/dist/index.css +1 -1
- package/dist/index.js +1 -1
- package/index.js +112 -100
- package/package.json +6 -6
package/core/core.d.ts
CHANGED
|
@@ -1,278 +1,403 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
+
|
|
3
4
|
export function adptCalc(config_js: any): any;
|
|
4
|
-
|
|
5
|
-
export function
|
|
6
|
-
|
|
7
|
-
export function
|
|
5
|
+
|
|
6
|
+
export function b64_rpl_proc(input: string, pad: number): string;
|
|
7
|
+
|
|
8
|
+
export function b64_rpl_revt(input: string, has_pad: boolean): string;
|
|
9
|
+
|
|
8
10
|
export function bar3DPathGen(shape: string, width: number, height: number, top_margin: number, max_height: number, percent: number, view_deep: number): any;
|
|
9
|
-
|
|
11
|
+
|
|
12
|
+
export function cidGen(input: string): string;
|
|
13
|
+
|
|
14
|
+
export function cidVaild(uid: string, classname: string): boolean;
|
|
15
|
+
|
|
16
|
+
export function coreConsoleError(errstr: string, msg: string): void;
|
|
17
|
+
|
|
18
|
+
export function coreConsoleInfo(infostr: string, msg: string): void;
|
|
19
|
+
|
|
20
|
+
export function coreConsoleWarn(warnstr: string, msg: string): void;
|
|
21
|
+
|
|
22
|
+
export function coreInfo(input: any): any;
|
|
23
|
+
|
|
24
|
+
export function cssVarGen(prefix: string, style_obj: object): string;
|
|
25
|
+
|
|
26
|
+
export function floatInfo(): void;
|
|
27
|
+
|
|
28
|
+
export function getEnv(): string;
|
|
29
|
+
|
|
30
|
+
export function getVer(): string;
|
|
31
|
+
|
|
32
|
+
export function md5Enc(input: string): string;
|
|
33
|
+
|
|
34
|
+
export function openDec(ciphertext: string, key_type: string): string;
|
|
35
|
+
|
|
36
|
+
export function openEnc(plaintext: string, key_type: string): string;
|
|
37
|
+
|
|
38
|
+
export function pieArcPathGen(cx: number, cy: number, base_radius: number, base_inner_radius: number, start_angle_rad: number, end_angle_rad: number, corner_radius: number, gap_distance: number): string;
|
|
39
|
+
|
|
40
|
+
export function rdmStr(length: number, has_digits: boolean): string;
|
|
41
|
+
|
|
42
|
+
export function scifiButtonA1(width: number): string;
|
|
43
|
+
|
|
44
|
+
export function scifiButtonA2(width: number): string;
|
|
45
|
+
|
|
46
|
+
export function scifiButtonA3(width: number): string;
|
|
47
|
+
|
|
48
|
+
export function scifiButtonA4(width: number): string;
|
|
49
|
+
|
|
50
|
+
export function scifiButtonA5(width: number): string;
|
|
51
|
+
|
|
52
|
+
export function scifiDecoA1(): string;
|
|
53
|
+
|
|
54
|
+
export function scifiDecoB1(): string;
|
|
55
|
+
|
|
56
|
+
export function scifiDecoB2(): string;
|
|
57
|
+
|
|
58
|
+
export function scifiDecoB3(): string;
|
|
59
|
+
|
|
60
|
+
export function scifiDecoD1(): string;
|
|
61
|
+
|
|
62
|
+
export function scifiGeomHexagon(width: number, height: number): string;
|
|
63
|
+
|
|
64
|
+
export function scifiGeomeParallelogram(width: number, height: number): string;
|
|
65
|
+
|
|
66
|
+
export function scifiGeomeRectangle(width: number, height: number): string;
|
|
67
|
+
|
|
68
|
+
export function scifiGeomeTrapezoid(width: number, height: number): string;
|
|
69
|
+
|
|
70
|
+
export function scifiGeomeTriangle(width: number, height: number): string;
|
|
71
|
+
|
|
72
|
+
export function scifiHeaderA1(width: number): string;
|
|
73
|
+
|
|
74
|
+
export function scifiHeaderA2(width: number): string;
|
|
75
|
+
|
|
76
|
+
export function scifiHeaderA3(width: number): string;
|
|
77
|
+
|
|
78
|
+
export function scifiHeaderA4(width: number): string;
|
|
79
|
+
|
|
80
|
+
export function scifiPanelA1(width: number, height: number, twidth: number): string;
|
|
81
|
+
|
|
82
|
+
export function scifiPanelA2(width: number, height: number): string;
|
|
83
|
+
|
|
84
|
+
export function scifiPanelA3(width: number, height: number, twidth: number): string;
|
|
85
|
+
|
|
86
|
+
export function scifiPanelB1(width: number, height: number): string;
|
|
87
|
+
|
|
88
|
+
export function scifiPanelB2(width: number, height: number): string;
|
|
89
|
+
|
|
90
|
+
export function scifiPanelB3(width: number, height: number): string;
|
|
91
|
+
|
|
92
|
+
export function scifiPanelB4(width: number, height: number): string;
|
|
93
|
+
|
|
94
|
+
export function scifiPanelDV1(width: number, height: number, twidth: number): string;
|
|
95
|
+
|
|
96
|
+
export function scifiPanelDV2(width: number, height: number): string;
|
|
97
|
+
|
|
98
|
+
export function scifiPanelDV3(width: number, height: number): string;
|
|
99
|
+
|
|
100
|
+
export function scifiPanelDV4(width: number, height: number): string;
|
|
101
|
+
|
|
102
|
+
export function scifiPanelDV5(width: number, height: number): string;
|
|
103
|
+
|
|
104
|
+
export function scifiPanelDV6(width: number, height: number): string;
|
|
105
|
+
|
|
106
|
+
export function scifiPanelDV7(width: number, height: number): string;
|
|
107
|
+
|
|
108
|
+
export function scifiPanelDV8(width: number, height: number): string;
|
|
109
|
+
|
|
110
|
+
export function scifiPanelDV9(width: number, height: number): string;
|
|
111
|
+
|
|
112
|
+
export function scifiPanelTitleA1(width: number): string;
|
|
113
|
+
|
|
114
|
+
export function scifiPanelTitleA2(): string;
|
|
115
|
+
|
|
116
|
+
export function scifiPanelTitleA3(): string;
|
|
117
|
+
|
|
118
|
+
export function setLang(lang?: string | null): void;
|
|
119
|
+
|
|
10
120
|
export function svgPatBlocks(): string;
|
|
121
|
+
|
|
11
122
|
export function svgPatCircuitDiagram(): string;
|
|
123
|
+
|
|
12
124
|
export function svgPatCircularOverlayA(): string;
|
|
125
|
+
|
|
13
126
|
export function svgPatCircularOverlayB(): string;
|
|
127
|
+
|
|
14
128
|
export function svgPatContourLine(): string;
|
|
129
|
+
|
|
15
130
|
export function svgPatCrosshairA(): string;
|
|
131
|
+
|
|
16
132
|
export function svgPatCrosshairB(): string;
|
|
133
|
+
|
|
17
134
|
export function svgPatCubeA(): string;
|
|
135
|
+
|
|
18
136
|
export function svgPatCubeB(): string;
|
|
137
|
+
|
|
19
138
|
export function svgPatCubeC(): string;
|
|
139
|
+
|
|
20
140
|
export function svgPatDiamondFlipped(): string;
|
|
141
|
+
|
|
21
142
|
export function svgPatDiamondLattice(): string;
|
|
143
|
+
|
|
22
144
|
export function svgPatDiamondPixel(): string;
|
|
145
|
+
|
|
23
146
|
export function svgPatDiamondWeaving(): string;
|
|
147
|
+
|
|
24
148
|
export function svgPatDots(): string;
|
|
149
|
+
|
|
25
150
|
export function svgPatHexagonA(): string;
|
|
151
|
+
|
|
26
152
|
export function svgPatHexagonB(): string;
|
|
153
|
+
|
|
27
154
|
export function svgPatHexagonC(): string;
|
|
28
|
-
|
|
155
|
+
|
|
29
156
|
export function svgPatHexagonCurved(): string;
|
|
157
|
+
|
|
158
|
+
export function svgPatHexagonD(): string;
|
|
159
|
+
|
|
30
160
|
export function svgPatLineGrid(): string;
|
|
161
|
+
|
|
31
162
|
export function svgPatLineWeaving(): string;
|
|
163
|
+
|
|
32
164
|
export function svgPatMazeA(): string;
|
|
165
|
+
|
|
33
166
|
export function svgPatMazeB(): string;
|
|
167
|
+
|
|
34
168
|
export function svgPatMazeC(): string;
|
|
169
|
+
|
|
35
170
|
export function svgPatMountains(): string;
|
|
171
|
+
|
|
36
172
|
export function svgPatRain(): string;
|
|
173
|
+
|
|
37
174
|
export function svgPatRectWeavingA(): string;
|
|
175
|
+
|
|
38
176
|
export function svgPatRectWeavingB(): string;
|
|
177
|
+
|
|
39
178
|
export function svgPatRectWeavingC(): string;
|
|
179
|
+
|
|
40
180
|
export function svgPatShellA(): string;
|
|
181
|
+
|
|
41
182
|
export function svgPatShellB(): string;
|
|
183
|
+
|
|
42
184
|
export function svgPatSlashParallel(): string;
|
|
185
|
+
|
|
186
|
+
export function svgPatTest(): string;
|
|
187
|
+
|
|
43
188
|
export function svgPatTotem(): string;
|
|
189
|
+
|
|
44
190
|
export function svgPatTriangleA(): string;
|
|
191
|
+
|
|
45
192
|
export function svgPatTriangleB(): string;
|
|
193
|
+
|
|
46
194
|
export function svgPatWaveA(): string;
|
|
195
|
+
|
|
47
196
|
export function svgPatWaveB(): string;
|
|
197
|
+
|
|
48
198
|
export function svgPatZigzagA(): string;
|
|
199
|
+
|
|
49
200
|
export function svgPatZigzagB(): string;
|
|
201
|
+
|
|
50
202
|
export function svgSpinBarsA(): string;
|
|
203
|
+
|
|
51
204
|
export function svgSpinBarsB(): string;
|
|
205
|
+
|
|
52
206
|
export function svgSpinBarsC(): string;
|
|
207
|
+
|
|
53
208
|
export function svgSpinBlocksA(): string;
|
|
209
|
+
|
|
54
210
|
export function svgSpinBlocksB(): string;
|
|
211
|
+
|
|
55
212
|
export function svgSpinBlocksC(): string;
|
|
213
|
+
|
|
56
214
|
export function svgSpinClock(): string;
|
|
215
|
+
|
|
57
216
|
export function svgSpinPointA(): string;
|
|
217
|
+
|
|
58
218
|
export function svgSpinPointB(): string;
|
|
219
|
+
|
|
59
220
|
export function svgSpinPointC(): string;
|
|
221
|
+
|
|
60
222
|
export function svgSpinPulseDotA(): string;
|
|
223
|
+
|
|
61
224
|
export function svgSpinPulseDotB(): string;
|
|
225
|
+
|
|
62
226
|
export function svgSpinPulseDotC(): string;
|
|
227
|
+
|
|
63
228
|
export function svgSpinPulseRingA(): string;
|
|
229
|
+
|
|
64
230
|
export function svgSpinPulseRingB(): string;
|
|
231
|
+
|
|
65
232
|
export function svgSpinPulseRingC(): string;
|
|
233
|
+
|
|
66
234
|
export function svgSpinRingA(): string;
|
|
235
|
+
|
|
67
236
|
export function svgSpinRingB(): string;
|
|
237
|
+
|
|
68
238
|
export function svgSpinRingC(): string;
|
|
69
|
-
|
|
70
|
-
export function
|
|
71
|
-
|
|
72
|
-
export function
|
|
73
|
-
|
|
74
|
-
export function
|
|
75
|
-
|
|
76
|
-
export function scifiDecoB2(): string;
|
|
77
|
-
export function scifiDecoB3(): string;
|
|
78
|
-
export function scifiDecoD1(): string;
|
|
79
|
-
export function scifiGeomHexagon(width: number, height: number): string;
|
|
80
|
-
export function scifiGeomeParallelogram(width: number, height: number): string;
|
|
81
|
-
export function scifiGeomeRectangle(width: number, height: number): string;
|
|
82
|
-
export function scifiGeomeTrapezoid(width: number, height: number): string;
|
|
83
|
-
export function scifiGeomeTriangle(width: number, height: number): string;
|
|
84
|
-
export function scifiHeaderA1(width: number): string;
|
|
85
|
-
export function scifiHeaderA2(width: number): string;
|
|
86
|
-
export function scifiHeaderA3(width: number): string;
|
|
87
|
-
export function scifiHeaderA4(width: number): string;
|
|
88
|
-
export function scifiPanelTitleA1(width: number): string;
|
|
89
|
-
export function scifiPanelTitleA2(): string;
|
|
90
|
-
export function scifiPanelTitleA3(): string;
|
|
91
|
-
export function scifiPanelA1(width: number, height: number, twidth: number): string;
|
|
92
|
-
export function scifiPanelA2(width: number, height: number): string;
|
|
93
|
-
export function scifiPanelA3(width: number, height: number, twidth: number): string;
|
|
94
|
-
export function scifiPanelB1(width: number, height: number): string;
|
|
95
|
-
export function scifiPanelB2(width: number, height: number): string;
|
|
96
|
-
export function scifiPanelB3(width: number, height: number): string;
|
|
97
|
-
export function scifiPanelB4(width: number, height: number): string;
|
|
98
|
-
export function scifiPanelDV1(width: number, height: number, twidth: number): string;
|
|
99
|
-
export function scifiPanelDV2(width: number, height: number): string;
|
|
100
|
-
export function scifiPanelDV3(width: number, height: number): string;
|
|
101
|
-
export function scifiPanelDV4(width: number, height: number): string;
|
|
102
|
-
export function scifiPanelDV5(width: number, height: number): string;
|
|
103
|
-
export function scifiPanelDV6(width: number, height: number): string;
|
|
104
|
-
export function scifiPanelDV7(width: number, height: number): string;
|
|
105
|
-
export function scifiPanelDV8(width: number, height: number): string;
|
|
106
|
-
export function scifiPanelDV9(width: number, height: number): string;
|
|
107
|
-
export function rdmStr(length: number, has_digits: boolean): string;
|
|
108
|
-
export function md5Enc(input: string): string;
|
|
109
|
-
export function b64_rpl_proc(input: string, pad: number): string;
|
|
110
|
-
export function b64_rpl_revt(input: string, has_pad: boolean): string;
|
|
111
|
-
export function openEnc(plaintext: string, key_type: string): string;
|
|
112
|
-
export function openDec(ciphertext: string, key_type: string): string;
|
|
113
|
-
export function getEnv(): string;
|
|
114
|
-
export function getVer(): string;
|
|
115
|
-
export function cssVarGen(prefix: string, style_obj: object): string;
|
|
116
|
-
export function coreConsoleError(errstr: string, msg: string): void;
|
|
117
|
-
export function coreConsoleWarn(warnstr: string, msg: string): void;
|
|
118
|
-
export function coreConsoleInfo(infostr: string, msg: string): void;
|
|
119
|
-
export function coreInfo(input: any): any;
|
|
120
|
-
export function cidGen(input: string): string;
|
|
121
|
-
export function cidVaild(uid: string, classname: string): boolean;
|
|
122
|
-
export function floatInfo(): void;
|
|
239
|
+
|
|
240
|
+
export function t3dCoeffCalc(coeff_ori: number, shadow_coeff_ori: number, dw: number): any;
|
|
241
|
+
|
|
242
|
+
export function t3dUpdateOrient(event: object, fix_alpha: number, ues_alpha: boolean): object;
|
|
243
|
+
|
|
244
|
+
export function t3dUpdateRotate(mode: string, coeff: number, e: MouseEvent, el: DOMRect, dh: number, dw: number): any;
|
|
245
|
+
|
|
123
246
|
export function techuiCoreInit(li_str?: string | null, sub_str?: string | null, core_init_str?: string | null, keychain?: string | null): void;
|
|
124
247
|
|
|
125
248
|
export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module;
|
|
126
249
|
|
|
127
250
|
export interface InitOutput {
|
|
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
|
-
|
|
251
|
+
readonly memory: WebAssembly.Memory;
|
|
252
|
+
readonly adptCalc: (a: number) => number;
|
|
253
|
+
readonly b64_rpl_proc: (a: number, b: number, c: number, d: number) => void;
|
|
254
|
+
readonly b64_rpl_revt: (a: number, b: number, c: number, d: number) => void;
|
|
255
|
+
readonly bar3DPathGen: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
256
|
+
readonly cidGen: (a: number, b: number, c: number) => void;
|
|
257
|
+
readonly cidVaild: (a: number, b: number, c: number, d: number) => number;
|
|
258
|
+
readonly coreConsoleError: (a: number, b: number, c: number, d: number) => void;
|
|
259
|
+
readonly coreConsoleInfo: (a: number, b: number, c: number, d: number) => void;
|
|
260
|
+
readonly coreConsoleWarn: (a: number, b: number, c: number, d: number) => void;
|
|
261
|
+
readonly coreInfo: (a: number) => number;
|
|
262
|
+
readonly cssVarGen: (a: number, b: number, c: number, d: number) => void;
|
|
263
|
+
readonly floatInfo: () => void;
|
|
264
|
+
readonly getEnv: (a: number) => void;
|
|
265
|
+
readonly getVer: (a: number) => void;
|
|
266
|
+
readonly md5Enc: (a: number, b: number, c: number) => void;
|
|
267
|
+
readonly openDec: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
268
|
+
readonly openEnc: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
269
|
+
readonly pieArcPathGen: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
|
|
270
|
+
readonly rdmStr: (a: number, b: number, c: number) => void;
|
|
271
|
+
readonly scifiButtonA1: (a: number, b: number) => void;
|
|
272
|
+
readonly scifiButtonA2: (a: number, b: number) => void;
|
|
273
|
+
readonly scifiButtonA3: (a: number, b: number) => void;
|
|
274
|
+
readonly scifiButtonA4: (a: number, b: number) => void;
|
|
275
|
+
readonly scifiButtonA5: (a: number, b: number) => void;
|
|
276
|
+
readonly scifiDecoA1: (a: number) => void;
|
|
277
|
+
readonly scifiDecoB1: (a: number) => void;
|
|
278
|
+
readonly scifiDecoB2: (a: number) => void;
|
|
279
|
+
readonly scifiDecoB3: (a: number) => void;
|
|
280
|
+
readonly scifiDecoD1: (a: number) => void;
|
|
281
|
+
readonly scifiGeomHexagon: (a: number, b: number, c: number) => void;
|
|
282
|
+
readonly scifiGeomeParallelogram: (a: number, b: number, c: number) => void;
|
|
283
|
+
readonly scifiGeomeRectangle: (a: number, b: number, c: number) => void;
|
|
284
|
+
readonly scifiGeomeTrapezoid: (a: number, b: number, c: number) => void;
|
|
285
|
+
readonly scifiGeomeTriangle: (a: number, b: number, c: number) => void;
|
|
286
|
+
readonly scifiHeaderA1: (a: number, b: number) => void;
|
|
287
|
+
readonly scifiHeaderA2: (a: number, b: number) => void;
|
|
288
|
+
readonly scifiHeaderA3: (a: number, b: number) => void;
|
|
289
|
+
readonly scifiHeaderA4: (a: number, b: number) => void;
|
|
290
|
+
readonly scifiPanelA1: (a: number, b: number, c: number, d: number) => void;
|
|
291
|
+
readonly scifiPanelA2: (a: number, b: number, c: number) => void;
|
|
292
|
+
readonly scifiPanelA3: (a: number, b: number, c: number, d: number) => void;
|
|
293
|
+
readonly scifiPanelB1: (a: number, b: number, c: number) => void;
|
|
294
|
+
readonly scifiPanelB2: (a: number, b: number, c: number) => void;
|
|
295
|
+
readonly scifiPanelB3: (a: number, b: number, c: number) => void;
|
|
296
|
+
readonly scifiPanelB4: (a: number, b: number, c: number) => void;
|
|
297
|
+
readonly scifiPanelDV1: (a: number, b: number, c: number, d: number) => void;
|
|
298
|
+
readonly scifiPanelDV2: (a: number, b: number, c: number) => void;
|
|
299
|
+
readonly scifiPanelDV3: (a: number, b: number, c: number) => void;
|
|
300
|
+
readonly scifiPanelDV4: (a: number, b: number, c: number) => void;
|
|
301
|
+
readonly scifiPanelDV5: (a: number, b: number, c: number) => void;
|
|
302
|
+
readonly scifiPanelDV6: (a: number, b: number, c: number) => void;
|
|
303
|
+
readonly scifiPanelDV7: (a: number, b: number, c: number) => void;
|
|
304
|
+
readonly scifiPanelDV8: (a: number, b: number, c: number) => void;
|
|
305
|
+
readonly scifiPanelDV9: (a: number, b: number, c: number) => void;
|
|
306
|
+
readonly scifiPanelTitleA1: (a: number, b: number) => void;
|
|
307
|
+
readonly scifiPanelTitleA2: (a: number) => void;
|
|
308
|
+
readonly scifiPanelTitleA3: (a: number) => void;
|
|
309
|
+
readonly setLang: (a: number, b: number) => void;
|
|
310
|
+
readonly svgPatBlocks: (a: number) => void;
|
|
311
|
+
readonly svgPatCircuitDiagram: (a: number) => void;
|
|
312
|
+
readonly svgPatCircularOverlayA: (a: number) => void;
|
|
313
|
+
readonly svgPatCircularOverlayB: (a: number) => void;
|
|
314
|
+
readonly svgPatContourLine: (a: number) => void;
|
|
315
|
+
readonly svgPatCrosshairA: (a: number) => void;
|
|
316
|
+
readonly svgPatCrosshairB: (a: number) => void;
|
|
317
|
+
readonly svgPatCubeA: (a: number) => void;
|
|
318
|
+
readonly svgPatCubeB: (a: number) => void;
|
|
319
|
+
readonly svgPatCubeC: (a: number) => void;
|
|
320
|
+
readonly svgPatDiamondFlipped: (a: number) => void;
|
|
321
|
+
readonly svgPatDiamondLattice: (a: number) => void;
|
|
322
|
+
readonly svgPatDiamondPixel: (a: number) => void;
|
|
323
|
+
readonly svgPatDiamondWeaving: (a: number) => void;
|
|
324
|
+
readonly svgPatDots: (a: number) => void;
|
|
325
|
+
readonly svgPatHexagonA: (a: number) => void;
|
|
326
|
+
readonly svgPatHexagonB: (a: number) => void;
|
|
327
|
+
readonly svgPatHexagonC: (a: number) => void;
|
|
328
|
+
readonly svgPatHexagonCurved: (a: number) => void;
|
|
329
|
+
readonly svgPatHexagonD: (a: number) => void;
|
|
330
|
+
readonly svgPatLineGrid: (a: number) => void;
|
|
331
|
+
readonly svgPatLineWeaving: (a: number) => void;
|
|
332
|
+
readonly svgPatMazeA: (a: number) => void;
|
|
333
|
+
readonly svgPatMazeB: (a: number) => void;
|
|
334
|
+
readonly svgPatMazeC: (a: number) => void;
|
|
335
|
+
readonly svgPatMountains: (a: number) => void;
|
|
336
|
+
readonly svgPatRain: (a: number) => void;
|
|
337
|
+
readonly svgPatRectWeavingA: (a: number) => void;
|
|
338
|
+
readonly svgPatRectWeavingB: (a: number) => void;
|
|
339
|
+
readonly svgPatRectWeavingC: (a: number) => void;
|
|
340
|
+
readonly svgPatShellA: (a: number) => void;
|
|
341
|
+
readonly svgPatShellB: (a: number) => void;
|
|
342
|
+
readonly svgPatSlashParallel: (a: number) => void;
|
|
343
|
+
readonly svgPatTotem: (a: number) => void;
|
|
344
|
+
readonly svgPatTriangleA: (a: number) => void;
|
|
345
|
+
readonly svgPatTriangleB: (a: number) => void;
|
|
346
|
+
readonly svgPatWaveA: (a: number) => void;
|
|
347
|
+
readonly svgPatWaveB: (a: number) => void;
|
|
348
|
+
readonly svgPatZigzagA: (a: number) => void;
|
|
349
|
+
readonly svgPatZigzagB: (a: number) => void;
|
|
350
|
+
readonly svgSpinBarsA: (a: number) => void;
|
|
351
|
+
readonly svgSpinBarsB: (a: number) => void;
|
|
352
|
+
readonly svgSpinBarsC: (a: number) => void;
|
|
353
|
+
readonly svgSpinBlocksA: (a: number) => void;
|
|
354
|
+
readonly svgSpinBlocksB: (a: number) => void;
|
|
355
|
+
readonly svgSpinBlocksC: (a: number) => void;
|
|
356
|
+
readonly svgSpinClock: (a: number) => void;
|
|
357
|
+
readonly svgSpinPointA: (a: number) => void;
|
|
358
|
+
readonly svgSpinPointB: (a: number) => void;
|
|
359
|
+
readonly svgSpinPointC: (a: number) => void;
|
|
360
|
+
readonly svgSpinPulseDotA: (a: number) => void;
|
|
361
|
+
readonly svgSpinPulseDotB: (a: number) => void;
|
|
362
|
+
readonly svgSpinPulseDotC: (a: number) => void;
|
|
363
|
+
readonly svgSpinPulseRingA: (a: number) => void;
|
|
364
|
+
readonly svgSpinPulseRingB: (a: number) => void;
|
|
365
|
+
readonly svgSpinPulseRingC: (a: number) => void;
|
|
366
|
+
readonly svgSpinRingA: (a: number) => void;
|
|
367
|
+
readonly svgSpinRingB: (a: number) => void;
|
|
368
|
+
readonly svgSpinRingC: (a: number) => void;
|
|
369
|
+
readonly t3dCoeffCalc: (a: number, b: number, c: number) => number;
|
|
370
|
+
readonly t3dUpdateOrient: (a: number, b: number, c: number) => number;
|
|
371
|
+
readonly t3dUpdateRotate: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => number;
|
|
372
|
+
readonly techuiCoreInit: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => void;
|
|
373
|
+
readonly svgPatTest: (a: number) => void;
|
|
374
|
+
readonly __wasm_bindgen_func_elem_92: (a: number, b: number) => void;
|
|
375
|
+
readonly __wasm_bindgen_func_elem_335: (a: number, b: number) => void;
|
|
376
|
+
readonly __wbindgen_export: (a: number, b: number) => number;
|
|
377
|
+
readonly __wbindgen_export2: (a: number, b: number, c: number, d: number) => number;
|
|
378
|
+
readonly __wbindgen_export3: (a: number) => void;
|
|
379
|
+
readonly __wbindgen_add_to_stack_pointer: (a: number) => number;
|
|
380
|
+
readonly __wbindgen_export4: (a: number, b: number, c: number) => void;
|
|
257
381
|
}
|
|
258
382
|
|
|
259
383
|
export type SyncInitInput = BufferSource | WebAssembly.Module;
|
|
384
|
+
|
|
260
385
|
/**
|
|
261
|
-
* Instantiates the given `module`, which can either be bytes or
|
|
262
|
-
* a precompiled `WebAssembly.Module`.
|
|
263
|
-
*
|
|
264
|
-
* @param {{ module: SyncInitInput }} module - Passing `SyncInitInput` directly is deprecated.
|
|
265
|
-
*
|
|
266
|
-
* @returns {InitOutput}
|
|
267
|
-
*/
|
|
386
|
+
* Instantiates the given `module`, which can either be bytes or
|
|
387
|
+
* a precompiled `WebAssembly.Module`.
|
|
388
|
+
*
|
|
389
|
+
* @param {{ module: SyncInitInput }} module - Passing `SyncInitInput` directly is deprecated.
|
|
390
|
+
*
|
|
391
|
+
* @returns {InitOutput}
|
|
392
|
+
*/
|
|
268
393
|
export function initSync(module: { module: SyncInitInput } | SyncInitInput): InitOutput;
|
|
269
394
|
|
|
270
395
|
/**
|
|
271
|
-
* If `module_or_path` is {RequestInfo} or {URL}, makes a request and
|
|
272
|
-
* for everything else, calls `WebAssembly.instantiate` directly.
|
|
273
|
-
*
|
|
274
|
-
* @param {{ module_or_path: InitInput | Promise<InitInput> }} module_or_path - Passing `InitInput` directly is deprecated.
|
|
275
|
-
*
|
|
276
|
-
* @returns {Promise<InitOutput>}
|
|
277
|
-
*/
|
|
396
|
+
* If `module_or_path` is {RequestInfo} or {URL}, makes a request and
|
|
397
|
+
* for everything else, calls `WebAssembly.instantiate` directly.
|
|
398
|
+
*
|
|
399
|
+
* @param {{ module_or_path: InitInput | Promise<InitInput> }} module_or_path - Passing `InitInput` directly is deprecated.
|
|
400
|
+
*
|
|
401
|
+
* @returns {Promise<InitOutput>}
|
|
402
|
+
*/
|
|
278
403
|
export default function __wbg_init (module_or_path?: { module_or_path: InitInput | Promise<InitInput> } | InitInput | Promise<InitInput>): Promise<InitOutput>;
|