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

added lab search

This commit is contained in:
Fedor Katurov 2022-03-29 17:40:48 +07:00
parent 16d12f92da
commit ddf2b6eda3
16 changed files with 149 additions and 28 deletions

View file

@ -15,17 +15,6 @@ export interface ITag {
readonly updated_at: string;
}
export type IInputTextProps = DetailedHTMLProps<
InputHTMLAttributes<HTMLInputElement>,
HTMLInputElement
> & {
handler?: (value: string) => void;
title?: string;
error?: string;
suffix?: ReactElement;
prefix?: ReactElement;
};
export type IIcon = string;
export type ValueOf<T> = T[keyof T];

View file

@ -30,6 +30,7 @@ export type GetLabNodesRequest = {
offset?: number;
after?: string;
sort?: LabNodesSort;
search?: string;
};
export interface ILabNode {