SearchResult
import type { SearchResult } from "https://raw.githubusercontent.com/takker99/scrapbox-userscript-std/0.14.10/deps/scrapbox-rest.ts";
the response type of /api/pages/:projectname/search/titles
interface SearchResult {
backend: string;
count: number;
existsExactTitleMatch: boolean;
limit: number;
pages: {
id: PageId;
title: string;
image: string;
words: string[];
lines: string[];
}[];projectName: string;
query: SearchQuery;
searchQuery: string;
}