ProjectSearchResult
import type { ProjectSearchResult } from "https://raw.githubusercontent.com/takker99/scrapbox-userscript-std/0.14.10/deps/scrapbox-rest.ts";
the response type of /api/projects/search/query and /api/projects/search/watch-list
interface ProjectSearchResult {
projects: {
_id: ProjectId;
name: string;
displayName: string;
image?: string | null;
}[];query: SearchQuery;
searchQuery: string;
}