1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 21:06:42 +07:00

fixed offseting in lab by number

This commit is contained in:
Fedor Katurov 2022-03-23 18:52:41 +07:00
parent 26a6d2d919
commit 2f8ce82325
3 changed files with 8 additions and 10 deletions

View file

@ -25,6 +25,8 @@ export enum LabNodesSort {
}
export type GetLabNodesRequest = {
limit?: number;
offset?: number;
after?: string;
sort?: LabNodesSort;
};