Type Alias: MoveViewResult
type MoveViewResult = {
error?: string;
results?: string[];
};
The result of executing a Move View Function.
Execution errors are captured in the error field, in which case the
results field will be None. On success, the results field will contain
the return values of the Move view function, and the error field will be
None.
Properties
error?
optional error?: string;
Execution error from executing the Move view function.
results?
optional results?: string[];
The return values of the Move view function, resolved and formatted as JSON.