Add "descending" to filter args

This commit is contained in:
Ferdinand Thiessen 2021-11-25 15:29:34 +01:00
parent 9094b38a8a
commit a21475a0d4
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{
"license": "MIT",
"version": "1.0.0-alpha.7",
"version": "1.0.0-alpha.8",
"name": "@flaschengeist/types",
"author": "Ferdinand Thiessen <rpm@fthiessen.de>",
"homepage": "https://flaschengeist.dev/",

View File

@ -40,6 +40,8 @@ declare namespace FG {
offset?: number;
from?: Date;
to?: Date;
/** Default to ascending */
descending?: boolean;
}
interface PaginationResponse<T> {
result: T[];