Skip to content

Commit 7a78251

Browse files
committed
change to jsdoc
1 parent cf377a7 commit 7a78251

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

extensions/ql-vscode/src/interface-types.ts

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,10 @@ export interface PreviousExecution {
3434
export interface Interpretation {
3535
sourceLocationPrefix: string;
3636
numTruncatedResults: number;
37-
// sortState being undefined means don't sort, just present results in the order
38-
// they appear in the sarif file.
37+
/**
38+
* sortState being undefined means don't sort, just present results in the order
39+
* they appear in the sarif file.
40+
*/
3941
sortState?: InterpretedResultsSortState;
4042
sarif: sarif.Log;
4143
}
@@ -130,17 +132,21 @@ export interface InterpretedResultsSortState {
130132
sortDirection: SortDirection;
131133
}
132134

133-
// sortState being undefined means don't sort, just present results in the order
134-
// they appear in the bqrs file.
135135
interface ChangeRawResultsSortMsg {
136136
t: 'changeSort';
137137
resultSetName: string;
138+
/**
139+
* sortState being undefined means don't sort, just present results in the order
140+
* they appear in the sarif file.
141+
*/
138142
sortState?: RawResultsSortState;
139143
}
140144

141-
// sortState being undefined means don't sort, just present results in the order
142-
// they appear in the sarif file.
143145
interface ChangeInterpretedResultsSortMsg {
144146
t: 'changeInterpretedSort';
147+
/**
148+
* sortState being undefined means don't sort, just present results in the order
149+
* they appear in the sarif file.
150+
*/
145151
sortState?: InterpretedResultsSortState;
146152
}

0 commit comments

Comments
 (0)