diff --git a/integrations/javascript/@planetarium/lib9c/src/index.ts b/integrations/javascript/@planetarium/lib9c/src/index.ts index b2b3cbdc85..a7a3c04b87 100644 --- a/integrations/javascript/@planetarium/lib9c/src/index.ts +++ b/integrations/javascript/@planetarium/lib9c/src/index.ts @@ -18,6 +18,10 @@ export { TransferAssets, type TransferAssetsArgs, } from "./actions/transfer_assets.js"; +export { + HackAndSlash, + type HackAndSlashArgs, +} from "./actions/hack_and_slash.js"; export { DeliverToOtherGarages, type DeliverToOtherGaragesArgs, diff --git a/integrations/javascript/@planetarium/lib9c/tests/actions/hack_and_slash.test.ts b/integrations/javascript/@planetarium/lib9c/tests/actions/hack_and_slash.test.ts index dca2f59a87..00c27adf48 100644 --- a/integrations/javascript/@planetarium/lib9c/tests/actions/hack_and_slash.test.ts +++ b/integrations/javascript/@planetarium/lib9c/tests/actions/hack_and_slash.test.ts @@ -1,6 +1,5 @@ import { describe } from "vitest"; -import { HackAndSlash } from "../../src/actions/hack_and_slash.js"; -import { RuneSlotInfo, uuidToGuidBytes } from "../../src/index.js"; +import { HackAndSlash, RuneSlotInfo, uuidToGuidBytes } from "../../src/index.js"; import { runTests } from "./common.js"; import { avatarAddress } from "./fixtures.js";