From 924de766c9a6a82af47f7f415e950f65aad3f269 Mon Sep 17 00:00:00 2001 From: Quazia Date: Mon, 2 Oct 2023 18:36:55 -0500 Subject: [PATCH] Fix(index): export DelegateActionParams (#24) --- .changeset/early-schools-think.md | 5 +++++ src/index.ts | 1 + 2 files changed, 6 insertions(+) create mode 100644 .changeset/early-schools-think.md diff --git a/.changeset/early-schools-think.md b/.changeset/early-schools-think.md new file mode 100644 index 000000000..d410233a1 --- /dev/null +++ b/.changeset/early-schools-think.md @@ -0,0 +1,5 @@ +--- +"@rabbitholegg/questdk": patch +--- + +Export the new delegate object diff --git a/src/index.ts b/src/index.ts index 35d77dd75..617ea217e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -10,6 +10,7 @@ export type { SwapActionParams, BridgeActionParams, MintActionParams, + DelegateActionParams, ActionParams, IActionPlugin, } from './actions/types.js'