DefaultValidationSeverity: "ERROR"

Default severity value that is set during the construction of publishing validation error objects if no explicit setter is used. Also used as part of a generic constraint for related types.

Example

Extended type to actually be used as a generic parameter can look like this:

export type ExampleSeverityType =
| DefaultValidationSeverity
| 'WARNING'
| 'NOTICE';

Generated using TypeDoc