/**
* Object for getting the result of running action.
* If the result is failed, its reason would be given as message.
*/exporttypeActionResult<T = any> = {
result: boolean;
hasError?: boolean;
message?: string;
args?: T;
};
//# sourceMappingURL=errorMessages.d.ts.map