mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 21:06:42 +07:00
added optional sorting to lab
This commit is contained in:
parent
04ea68d94e
commit
566e1192cd
5 changed files with 21 additions and 9 deletions
|
@ -19,8 +19,14 @@ export type ILabState = Readonly<{
|
|||
};
|
||||
}>;
|
||||
|
||||
export enum LabNodesSort {
|
||||
New = 'new',
|
||||
Hot = 'hot',
|
||||
}
|
||||
|
||||
export type GetLabNodesRequest = {
|
||||
after?: string;
|
||||
sort?: LabNodesSort;
|
||||
};
|
||||
|
||||
export interface ILabNode {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue