@learncard/didkit-plugin 1.0.8 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/didkit/didkit_wasm.d.ts +11 -9
- package/dist/didkit/didkit_wasm.js +203 -154
- package/dist/didkit/didkit_wasm_bg.wasm +0 -0
- package/dist/didkit/didkit_wasm_bg.wasm.d.ts +5 -5
- package/dist/didkit/index.d.ts +1 -1
- package/dist/didkit-plugin.cjs.development.js +208 -157
- package/dist/didkit-plugin.cjs.development.js.map +2 -2
- package/dist/didkit-plugin.cjs.production.min.js +2 -2
- package/dist/didkit-plugin.cjs.production.min.js.map +2 -2
- package/dist/didkit-plugin.esm.js +208 -157
- package/dist/didkit-plugin.esm.js.map +2 -2
- package/dist/didkit_wasm.d.ts +11 -9
- package/dist/didkit_wasm.js +203 -154
- package/dist/didkit_wasm_bg.wasm +0 -0
- package/dist/didkit_wasm_bg.wasm.d.ts +5 -5
- package/package.json +1 -1
Binary file
|
@@ -33,11 +33,11 @@ export function verifyInvocation(a: number, b: number, c: number, d: number): nu
|
|
33
33
|
export function contextLoader(a: number, b: number): number;
|
34
34
|
export function didkit_error_message(): number;
|
35
35
|
export function didkit_error_code(): number;
|
36
|
-
export function __wbindgen_malloc(a: number): number;
|
37
|
-
export function __wbindgen_realloc(a: number, b: number, c: number): number;
|
36
|
+
export function __wbindgen_malloc(a: number, b: number): number;
|
37
|
+
export function __wbindgen_realloc(a: number, b: number, c: number, d: number): number;
|
38
38
|
export const __wbindgen_export_2: WebAssembly.Table;
|
39
|
-
export function
|
39
|
+
export function _dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__heb2947e09b459f26(a: number, b: number, c: number): void;
|
40
40
|
export function __wbindgen_add_to_stack_pointer(a: number): number;
|
41
|
-
export function __wbindgen_free(a: number, b: number): void;
|
41
|
+
export function __wbindgen_free(a: number, b: number, c: number): void;
|
42
42
|
export function __wbindgen_exn_store(a: number): void;
|
43
|
-
export function
|
43
|
+
export function wasm_bindgen__convert__closures__invoke2_mut__h37b98ed5001919e7(a: number, b: number, c: number, d: number): void;
|
package/dist/didkit/index.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
1
|
import { InitInput } from './pkg/didkit_wasm';
|
2
2
|
export * from './pkg/didkit_wasm';
|
3
|
-
export declare const init: (arg?: InitInput | Promise<InitInput>) => Promise<
|
3
|
+
export declare const init: (arg?: InitInput | Promise<InitInput>) => Promise<void>;
|
4
4
|
export default init;
|