@iota-pico/api
Version:
IOTA Pico Framework API
16 lines (15 loc) • 371 B
TypeScript
import { ICommonResponse } from "./ICommonResponse";
/**
* Represents the response from checkConsistency command.
* @interface
*/
export interface ICheckConsistencyResponse extends ICommonResponse {
/**
* Is the tail reference consistent.
*/
state: boolean;
/**
* Is the tail reference consistent.
*/
info: string;
}