blowater/app/UI/search_model.ts
Water Blower 55d6735e7b
use esbuild & JSR (#486)
and remove submodules
2024-07-03 15:46:31 +08:00

11 lines
260 B
TypeScript

import { PublicKey } from "@blowater/nostr-sdk";
export type SearchUpdate = SelectConversation | StartSearch;
export type StartSearch = {
type: "StartSearch";
};
export type SelectConversation = {
type: "SelectConversation";
pubkey: PublicKey;
};