UNPKG

@iota-pico/api

Version:
16 lines (15 loc) 389 B
import { ICommonResponse } from "./ICommonResponse"; /** * Represents the response from getTransactionsToApprove command. * @interface */ export interface IGetTransactionsToApproveResponse extends ICommonResponse { /** * The trunk transaction. */ trunkTransaction: string; /** * The branch transaction. */ branchTransaction: string; }