Skip to content

Commit

Permalink
fix: remove unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
seniorjoinu committed Apr 26, 2024
1 parent e9d39d0 commit 2d81eb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/agent/src/actor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { pollForResponse, PollStrategyFactory, strategy } from './polling';
import { Principal } from '@dfinity/principal';
import { RequestId } from './request_id';
import { toHex } from './utils/buffer';
import { Certificate, CreateCertificateOptions } from './certificate';
import { CreateCertificateOptions } from './certificate';
import managementCanisterIdl from './canisters/management_idl';
import _SERVICE, { canister_settings } from './canisters/management_service';

Expand Down Expand Up @@ -184,7 +184,7 @@ export interface ActorMethodWithHttpDetails<Args extends unknown[] = unknown[],
(...args: Args): Promise<{
httpDetails: HttpDetailsResponse;
result: Ret;
cert: Certificate | undefined;
cert: ArrayBuffer | undefined;
}>;
}

Expand Down

0 comments on commit 2d81eb8

Please sign in to comment.