IResultObject
[ Interface ]
Version 1.10
export interface IResultObject<T extends object> extends TcHmi.IResultObject {
value?: T;
}
Version 1.12
export interface IResultObject<T extends object | null> extends TcHmi.IResultObject {
value?: T;
}
Extends TcHmi.IResultObject
Properties
Name | Type | Description |
---|---|---|
error | Cause of the fault | |
details [ optional ] | Optional details about error. Content depends on the function used and the error. | |
value [ optional ] | T | The object passed in the constructor. |
Available from version 1.10 |