|
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 | |
|---|
| 1 | import { IssuePosition } from './IssuePosition';
|
|---|
| 2 | interface IssueLocation {
|
|---|
| 3 | start: IssuePosition;
|
|---|
| 4 | end: IssuePosition;
|
|---|
| 5 | }
|
|---|
| 6 | declare function compareIssueLocations(locationA?: IssueLocation, locationB?: IssueLocation): number;
|
|---|
| 7 | declare function formatIssueLocation(location: IssueLocation): string;
|
|---|
| 8 | export { IssueLocation, compareIssueLocations, formatIssueLocation };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.