Skip to content

Commit 055c52e

Browse files
committed
typecheck
1 parent 6e144f9 commit 055c52e

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

apps/array/src/renderer/features/panels/store/panelLayoutStore.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,13 @@ export interface PanelLayoutStore {
4646
taskId: string,
4747
terminalLayoutMode?: "split" | "tabbed",
4848
) => void;
49-
openFile: (taskId: string, filePath: string) => void;
50-
openDiff: (taskId: string, filePath: string, status?: string) => void;
49+
openFile: (taskId: string, filePath: string, asPreview?: boolean) => void;
50+
openDiff: (
51+
taskId: string,
52+
filePath: string,
53+
status?: string,
54+
asPreview?: boolean,
55+
) => void;
5156
keepTab: (taskId: string, panelId: string, tabId: string) => void;
5257
closeTab: (taskId: string, panelId: string, tabId: string) => void;
5358
closeOtherTabs: (taskId: string, panelId: string, tabId: string) => void;

0 commit comments

Comments
 (0)