@ledgerhq/coin-ton
Version:
12 lines • 431 B
TypeScript
import type { AccountLike } from "@ledgerhq/types-live";
import { Transaction } from "./types";
declare function inferTransactions(transactions: Array<{
account: AccountLike;
transaction: Transaction;
}>, opts: Record<string, string>): Transaction[];
export default function makeCliTools(): {
options: never[];
inferTransactions: typeof inferTransactions;
};
export {};
//# sourceMappingURL=cli-transaction.d.ts.map