Skip to content

Commit b48e2b8

Browse files
committed
fix(exports): export types
1 parent 044b093 commit b48e2b8

3 files changed

Lines changed: 2 additions & 6 deletions

File tree

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
export { ExecutorEncoder } from "./ExecutorEncoder";
2-
export type { AssetRequest } from "./ExecutorEncoder";
1+
export * from "./ExecutorEncoder";
32
export * from "./types";

packages/executooor-viem/src/ExecutorEncoder.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ import { writeContract } from "viem/actions";
1919
import { erc20WrapperAbi } from "./abis";
2020
import { executorAbi } from "./contracts/Executor";
2121

22-
export type PromiseOrValue<T> = T | Promise<T>;
23-
2422
export interface AssetRequest {
2523
asset: Address;
2624
amount: bigint;
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
export { ExecutorEncoder } from "./ExecutorEncoder";
2-
export type { AssetRequest } from "./ExecutorEncoder";
1+
export * from "./ExecutorEncoder";
32
export * from "./contracts/Executor";

0 commit comments

Comments
 (0)