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 29239bf commit 32c7880Copy full SHA for 32c7880
packages/search/lib/commands/SEARCH_NOCONTENT.ts
@@ -17,12 +17,12 @@ export function transformArguments(
17
);
18
}
19
20
-export interface SearchNonContentReply {
+export interface SearchNoContentReply {
21
total: number;
22
documents: Array<string>;
23
};
24
25
-export function transformReply(reply: SearchRawReply): SearchNonContentReply {
+export function transformReply(reply: SearchRawReply): SearchNoContentReply {
26
return {
27
total: reply[0],
28
documents: reply.slice(1)
0 commit comments