ts: Remove unused imports (#3331)

This commit is contained in:
acheron 2024-10-26 01:40:46 +02:00 committed by GitHub
parent c25bd7b7eb
commit fe4fcded34
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 4 deletions

View File

@ -5,12 +5,10 @@ import { splitArgsAndCtx } from "../context.js";
import { TransactionFn } from "./transaction.js";
import { EventParser, Event } from "../event.js";
import { Coder } from "../../coder/index.js";
import { Idl, IdlEvent, IdlTypeDef } from "../../idl.js";
import { Idl } from "../../idl.js";
import { translateError } from "../../error.js";
import {
AllEvents,
AllInstructions,
IdlTypes,
InstructionContextFn,
MakeInstructionsNamespace,
} from "./types";

View File

@ -1,5 +1,5 @@
import { Transaction } from "@solana/web3.js";
import { Idl, IdlInstruction } from "../../idl.js";
import { Idl } from "../../idl.js";
import { splitArgsAndCtx } from "../context.js";
import { InstructionFn } from "./instruction.js";
import {