(
sessionId: string,
input: { path: string },
)
| 927 | } |
| 928 | |
| 929 | async revealFile( |
| 930 | sessionId: string, |
| 931 | input: { path: string }, |
| 932 | ): Promise<{ revealed: true }> { |
| 933 | return this.http.post<{ revealed: true }>( |
| 934 | `/sessions/${encodeURIComponent(sessionId)}/fs:reveal`, |
| 935 | { path: input.path }, |
| 936 | ); |
| 937 | } |
| 938 | |
| 939 | async openInApp( |
| 940 | sessionId: string, |