#173 - Allow to specify your own sorting

This commit is contained in:
Elio Struyf
2021-11-10 15:18:35 +01:00
parent 5b38e6fa56
commit 8261f1de1b
13 changed files with 148 additions and 26 deletions
+8
View File
@@ -0,0 +1,8 @@
import { SortOrder, SortType } from ".";
export interface SortingSetting {
title: string;
name: string;
order: SortOrder;
type: SortType;
}