adding in stuff to make search work but still testing and stuff

This commit is contained in:
talksik
2022-03-18 12:37:39 -04:00
parent 726ab29b64
commit 1ff61bf91d
12 changed files with 225 additions and 64 deletions
@@ -0,0 +1,12 @@
import { User } from "@nirvana/core/models";
/**
* Full results from the global search
*/
export default class SearchResponse {
// all friends/contacts matching search
contacts?: User[];
// all public users
constructor(public users: User[]) {}
}