mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
moved flow files
This commit is contained in:
parent
a068f56abf
commit
b1e8bddbaf
4 changed files with 5 additions and 5 deletions
11
src/types/flow/index.ts
Normal file
11
src/types/flow/index.ts
Normal 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;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue