UNPKG

jakke-graphics-ts

Version:

My common graphics utils for building my aec apps.

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