From a55e91412f5642f8da3b1e24716e3fdd6ba33dea Mon Sep 17 00:00:00 2001 From: Michael Wang <44713145+mzywang@users.noreply.github.com> Date: Wed, 3 Apr 2024 15:58:04 -0400 Subject: [PATCH] update export --- src/mappings/pool/index.ts | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/src/mappings/pool/index.ts b/src/mappings/pool/index.ts index 60a48760..d3ce4824 100644 --- a/src/mappings/pool/index.ts +++ b/src/mappings/pool/index.ts @@ -1,8 +1,6 @@ -import { handleBurn as handleBurnHelper } from './burn' -import { handleInitialize as handleInitializeHelper } from './initialize' -import { handleMint as handleMintHelper } from './mint' -import { handleSwap as handleSwapHelper } from './swap' -export const handleInitialize = handleInitializeHelper -export const handleMint = handleMintHelper -export const handleBurn = handleBurnHelper -export const handleSwap = handleSwapHelper +import { handleBurn } from './burn' +import { handleInitialize } from './initialize' +import { handleMint } from './mint' +import { handleSwap } from './swap' + +export { handleInitialize, handleMint, handleBurn, handleSwap }