/** * @name IssueSeverity * @description How the issue affects the success of the action. * @description fatal | error | warning | information * @see IssueSeverity * @version R4 * @author Roberto Araneda Espinoza */ export type IssueSeverityType = 'fatal' | 'error' | 'warning' | 'information';