We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c10957f commit f243cccCopy full SHA for f243ccc
response.ts
@@ -459,6 +459,18 @@ export interface FoundPage {
459
lines: string[];
460
}
461
462
+/** the response type of /api/pages/:projectname/search/files */
463
+export interface FileSearchResult
464
+ extends Omit<SearchResult, "field" | "pages"> {
465
+ /** 見つかったページ */
466
+ pages: FoundPageByFile[];
467
+}
468
+
469
+/** /api/pages/:projectname/search/files で見つかったページ */
470
+export interface FoundPageByFile extends FoundPage {
471
+ file: string;
472
473
474
/** the response type of /api/projects/search/query and /api/projects/search/watch-list */
475
export interface ProjectSearchResult {
476
/** 検索文字列 */
0 commit comments