diff --git a/keyserver/addons/rust-node-addon/index.js b/keyserver/addons/rust-node-addon/index.js --- a/keyserver/addons/rust-node-addon/index.js +++ b/keyserver/addons/rust-node-addon/index.js @@ -3,7 +3,7 @@ import invariant from 'invariant'; import { createRequire } from 'module'; -import type { RustNativeBindingAPI } from 'lib/types/rust-binding-types.js'; +import type { RustNativeBindingAPI } from './rust-binding-types.js'; const { platform, arch } = process; diff --git a/lib/types/rust-binding-types.js b/keyserver/addons/rust-node-addon/rust-binding-types.js rename from lib/types/rust-binding-types.js rename to keyserver/addons/rust-node-addon/rust-binding-types.js --- a/lib/types/rust-binding-types.js +++ b/keyserver/addons/rust-node-addon/rust-binding-types.js @@ -1,6 +1,6 @@ // @flow -import type { SignedIdentityKeysBlob } from './crypto-types.js'; +import type { SignedIdentityKeysBlob } from 'lib/types/crypto-types.js'; type tunnelbrokerOnReceiveCallback = ( err: Error | null,