blowater/app/UI/search_model.ts

11 lines
267 B
TypeScript
Raw Normal View History

2024-01-01 17:28:10 +00:00
import { PublicKey } from "../../libs/nostr.ts/key.ts";
2023-06-30 14:05:57 +00:00
2024-03-19 15:29:59 +00:00
export type SearchUpdate = SelectConversation | StartSearch;
export type StartSearch = {
2023-06-30 14:05:57 +00:00
type: "StartSearch";
};
2023-09-23 21:33:30 +00:00
export type SelectConversation = {
type: "SelectConversation";
2023-06-30 14:05:57 +00:00
pubkey: PublicKey;
};