UNPKG

@iota-pico/api

Version:
12 lines (11 loc) 314 B
import { ICommonResponse } from "./ICommonResponse"; /** * Represents the response from getMissingTransactions command. * @interface */ export interface IGetMissingTransactionsResponse extends ICommonResponse { /** * The transactions with missing references. */ hashes: string[]; }