|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 13 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
435 bytes
|
| Line | |
|---|
| 1 | import { IssueSeverity } from './IssueSeverity';
|
|---|
| 2 | import { IssueLocation } from './IssueLocation';
|
|---|
| 3 | interface Issue {
|
|---|
| 4 | origin: string;
|
|---|
| 5 | severity: IssueSeverity;
|
|---|
| 6 | code: string;
|
|---|
| 7 | message: string;
|
|---|
| 8 | file?: string;
|
|---|
| 9 | location?: IssueLocation;
|
|---|
| 10 | }
|
|---|
| 11 | declare function isIssue(value: unknown): value is Issue;
|
|---|
| 12 | declare function deduplicateAndSortIssues(issues: Issue[]): Issue[];
|
|---|
| 13 | export { Issue, isIssue, deduplicateAndSortIssues };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.