source: frontend/node_modules/fork-ts-checker-webpack-plugin/lib/issue/Issue.d.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 435 bytes
RevLine 
[9af201e]1import { IssueSeverity } from './IssueSeverity';
2import { IssueLocation } from './IssueLocation';
3interface Issue {
4 origin: string;
5 severity: IssueSeverity;
6 code: string;
7 message: string;
8 file?: string;
9 location?: IssueLocation;
10}
11declare function isIssue(value: unknown): value is Issue;
12declare function deduplicateAndSortIssues(issues: Issue[]): Issue[];
13export { Issue, isIssue, deduplicateAndSortIssues };
Note: See TracBrowser for help on using the repository browser.