/** Describes an input or output. */
export interface InOutPut {
/** The input or output value. */
value?: string;
/** The pairing ID. */
pairingID?: number;
}
Source
Source
/** Describes an input or output. */
export interface InOutPut {
/** The input or output value. */
value?: string;
/** The pairing ID. */
pairingID?: number;
}