Skip to content

Commit

Permalink
Merge branch 'feat/refactor-to-enable-addtional-bridge' into feat/add…
Browse files Browse the repository at this point in the history
…-mobile-keyring-bridge
  • Loading branch information
stanleyyconsensys committed Feb 26, 2024
2 parents e3900b6 + 69b7221 commit 0fa45f9
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/ledger-bridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ export type LedgerSignTypedDataResponse = Awaited<

export type LedgerBridgeOptions = Record<string, unknown>;

// eslint-disable-next-line @typescript-eslint/consistent-type-definitions
export interface LedgerBridge<T extends LedgerBridgeOptions> {
export type LedgerBridge<T extends LedgerBridgeOptions> = {
isDeviceConnected: boolean;

init(): Promise<void>;
Expand Down Expand Up @@ -64,4 +63,4 @@ export interface LedgerBridge<T extends LedgerBridgeOptions> {
deviceSignTypedData(
params: LedgerSignTypedDataParams,
): Promise<LedgerSignTypedDataResponse>;
}
};

0 comments on commit 0fa45f9

Please sign in to comment.