UNPKG

@textlint/types

Version:
10 lines (9 loc) 209 B
/** * Severity Level list * It is used in configuration and message */ type none = 0; type info = 0; type warning = 1; type error = 2; export type TextlintRuleSeverityLevel = none | info | warning | error;