diff --git a/.github/actions/make/ts/browser/action.yml b/.github/actions/make/ts/browser/action.yml index ec2c1bbb11..136ac46bce 100644 --- a/.github/actions/make/ts/browser/action.yml +++ b/.github/actions/make/ts/browser/action.yml @@ -29,6 +29,7 @@ runs: make-rule: wasm-build target-path: | crypto-ffi/bindings/js/packages/browser/src/autogenerated/core_crypto_ffi.ts + crypto-ffi/bindings/js/packages/browser/src/autogenerated/core_crypto_ffi-ffi.ts crypto-ffi/bindings/js/packages/browser/src/autogenerated/wasm-bindgen/index_bg.wasm.d.ts crypto-ffi/bindings/js/packages/browser/src/autogenerated/wasm-bindgen/index_bg.wasm crypto-ffi/bindings/js/packages/browser/src/autogenerated/wasm-bindgen/index.js diff --git a/crypto-ffi/bindings/js/packages/browser/benches/utils.ts b/crypto-ffi/bindings/js/packages/browser/benches/utils.ts index 4c82b0f574..f7ca566443 100644 --- a/crypto-ffi/bindings/js/packages/browser/benches/utils.ts +++ b/crypto-ffi/bindings/js/packages/browser/benches/utils.ts @@ -1,6 +1,6 @@ import { browser } from "@wdio/globals"; import type { Bench } from "tinybench"; -import { type CommitBundle } from "@wireapp/core-crypto/browser"; +import type { CommitBundle } from "@wireapp/core-crypto/browser"; import { sharedSetup, type Helpers, diff --git a/crypto-ffi/bindings/js/packages/browser/shared/utils.ts b/crypto-ffi/bindings/js/packages/browser/shared/utils.ts index ec5940c37d..af5b515d5f 100644 --- a/crypto-ffi/bindings/js/packages/browser/shared/utils.ts +++ b/crypto-ffi/bindings/js/packages/browser/shared/utils.ts @@ -1,15 +1,15 @@ -import { +import type { Ciphersuite, - type ClientId, - type CommitBundle, - type ConversationId, - type CoreCrypto, - type CoreCryptoLogLevel, - type GroupInfoBundle, - type HistorySecret, - type KeyPackage, - type MlsTransport, - type MlsTransportData, + ClientId, + CommitBundle, + ConversationId, + CoreCrypto, + CoreCryptoLogLevel, + GroupInfoBundle, + HistorySecret, + KeyPackage, + MlsTransport, + MlsTransportData, } from "@wireapp/core-crypto/browser"; import { browser } from "@wdio/globals"; diff --git a/crypto-ffi/bindings/js/packages/browser/test/utils.ts b/crypto-ffi/bindings/js/packages/browser/test/utils.ts index f8e84b9f82..727b9c3e68 100644 --- a/crypto-ffi/bindings/js/packages/browser/test/utils.ts +++ b/crypto-ffi/bindings/js/packages/browser/test/utils.ts @@ -1,9 +1,9 @@ import { browser } from "@wdio/globals"; -import { +import type { Ciphersuite, - type CommitBundle, - type PkiEnvironmentHooks, + CommitBundle, + PkiEnvironmentHooks, HttpMethod, HttpHeader, } from "@wireapp/core-crypto/browser";