blob: e56b93f98aaaf12048253f6e5e409f051c389b78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/
export type SortOrderDirection = '+' | '-';
export type SortOrder<T extends string> = {
key: T;
direction: SortOrderDirection;
};
|