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

moved flow files

This commit is contained in:
Fedor Katurov 2022-01-04 19:37:46 +07:00
parent a068f56abf
commit b1e8bddbaf
4 changed files with 5 additions and 5 deletions

11
src/types/flow/index.ts Normal file
View file

@ -0,0 +1,11 @@
import { INode } from '~/redux/types';
export type GetSearchResultsRequest = {
text: string;
take: number;
skip: number;
};
export type GetSearchResultsResult = {
nodes: INode[];
total: number;
};