@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
19 lines • 905 B
TypeScript
import type { Bridge } from "@ledgerhq/types-live";
import type { CardanoAccount, Transaction, TransactionStatus } from "@ledgerhq/coin-cardano/types";
import type { Resolver } from "../../hw/getAddress/types";
declare const bridge: Bridge<Transaction, CardanoAccount, TransactionStatus>;
declare const resolver: Resolver;
declare const cliTools: {
options: {
name: string;
type: StringConstructor;
desc: string;
}[];
inferAccounts: (account: import("@ledgerhq/types-live").Account, opts: Record<string, any>) => import("@ledgerhq/types-live").TokenAccount[] | import("@ledgerhq/types-live").Account[];
inferTransactions: (transactions: {
account: import("@ledgerhq/types-live").AccountLike;
transaction: Transaction;
}[], opts: Record<string, any>) => Transaction[];
};
export { bridge, cliTools, resolver };
//# sourceMappingURL=setup.d.ts.map