You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

4 lines
297 B

export type IssueSeverity = 'error' | 'warning';
export type IssueDefaultSeverity = IssueSeverity | 'auto';
export declare function isIssueSeverity(value: unknown): value is IssueSeverity;
export declare function compareIssueSeverities(severityA: IssueSeverity, severityB: IssueSeverity): number;