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

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

Fix frontend appearance

  • Property mode set to 100644
File size: 370 bytes
Line 
1import { IssuePosition } from './IssuePosition';
2interface IssueLocation {
3 start: IssuePosition;
4 end: IssuePosition;
5}
6declare function compareIssueLocations(locationA?: IssueLocation, locationB?: IssueLocation): number;
7declare function formatIssueLocation(location: IssueLocation): string;
8export { IssueLocation, compareIssueLocations, formatIssueLocation };
Note: See TracBrowser for help on using the repository browser.