From 6b9c2db7a0588796b07566f348a6469ccdd2314b Mon Sep 17 00:00:00 2001 From: Nikita Galaiko Date: Mon, 6 Mar 2023 13:53:04 +0100 Subject: [PATCH] pnpm format --- src/lib/search.ts | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/lib/search.ts b/src/lib/search.ts index 92f6ed285..a7168c729 100644 --- a/src/lib/search.ts +++ b/src/lib/search.ts @@ -1,18 +1,18 @@ import { invoke } from '@tauri-apps/api'; export type SearchResult = { - projectId: string; - sessionId: string; - filePath: string; - // index of the delta in the session. - index: number; - timestampMsGte?: number; - timestampMsLt?: number; + projectId: string; + sessionId: string; + filePath: string; + // index of the delta in the session. + index: number; + timestampMsGte?: number; + timestampMsLt?: number; }; export const search = (params: { - projectId: string; - query: string; - limit?: number; - offset?: number; + projectId: string; + query: string; + limit?: number; + offset?: number; }) => invoke('search', params);