From 97230ca82a773514f9d95acaf07aa208d9861e11 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Mon, 15 Apr 2024 21:12:34 +0300 Subject: [PATCH] server-ts: Remove some esdoc types --- src/services/backend_script_api.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/services/backend_script_api.ts b/src/services/backend_script_api.ts index 34767ae75..627cd3c49 100644 --- a/src/services/backend_script_api.ts +++ b/src/services/backend_script_api.ts @@ -80,7 +80,6 @@ interface Api { /** * Axios library for HTTP requests. See {@link https://axios-http.com} for documentation - * @type {axios} * @deprecated use native (browser compatible) fetch() instead */ axios: typeof axios; @@ -122,9 +121,6 @@ interface Api { /** * This is a powerful search method - you can search by attributes and their values, e.g.: * "#dateModified =* MONTH AND #log". See {@link https://github.com/zadam/trilium/wiki/Search} for full documentation for all options - * - * @param {string} query - * @param {Object} [searchParams] */ searchForNote(query: string, searchParams: SearchParams): BNote | null;