Skip to content

Commit 2fa0239

Browse files
committed
resolve typescript errors created from merging PRs
1 parent aaaf7af commit 2fa0239

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/types.ts

+2
Original file line numberDiff line numberDiff line change
@@ -411,6 +411,8 @@ type RendererModel = {
411411
type SimpleBlobRendererComponent = React.ComponentType<{
412412
data: Blob;
413413
readOnly?: boolean;
414+
notFound?: boolean;
415+
isSelected?: boolean;
414416
cmdstr?: string;
415417
cwd?: string;
416418
exitcode?: number;

src/view/code.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ declare var monaco: any;
1515
class SourceCodeRenderer extends React.Component<
1616
{
1717
data: Blob;
18-
readOnly: boolean;
1918
cmdstr: string;
2019
cwd: string;
2120
readOnly: boolean;

0 commit comments

Comments
 (0)