UNPKG
@iota-pico/api
Version:
latest (1.0.0)
1.0.0
0.9.9
0.9.8
0.9.7
0.9.6
0.9.5
0.9.4
0.9.3
0.9.2
0.9.1
0.9.0
0.6.1
0.6.0
0.5.2
0.5.1
0.5.0
IOTA Pico Framework API
github.com/iota-pico/api
iota-pico/api
@iota-pico/api
/
dist
/
models
/
IGetMissingTransactionsResponse.d.ts
12 lines
(11 loc)
•
314 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import { ICommonResponse }
from
"./ICommonResponse"
;
/** * Represents the response from getMissingTransactions command. *
@interface
*/
export
interface
IGetMissingTransactionsResponse
extends
ICommonResponse
{
/** * The transactions with missing references. */
hashes:
string
[]; }