We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a17113f commit 3d7b677Copy full SHA for 3d7b677
1 file changed
denops/fall/processor/sort.ts
@@ -15,6 +15,7 @@ export class SortProcessor<T extends Detail> implements Disposable {
15
#processing?: Promise<void>;
16
#reserved?: () => void;
17
#items: IdItem<T>[] = [];
18
+
19
constructor(
20
sorters: readonly Sorter<T>[],
21
options: SortProcessorOptions = {},
@@ -43,7 +44,7 @@ export class SortProcessor<T extends Detail> implements Disposable {
43
44
this.sorters.index = index;
45
}
46
- get items() {
47
+ get items(): readonly IdItem<T>[] {
48
return this.#items;
49
50
0 commit comments