Skip to content

Commit

Permalink
fix: resolve build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
decaf-dev committed Dec 27, 2023
1 parent 60f79c0 commit 50038ea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/export/local-export.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { exec as execCallback } from "child_process";
import { promisify } from "util";
import { BrowserTab } from "./types";

const exec = promisify(execCallback);

Expand Down
1 change: 1 addition & 0 deletions src/export/remote-export.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { exec as execCallback } from "child_process";
import { promisify } from "util";
import { BrowserTab } from "./types";

const exec = promisify(execCallback);

Expand Down
2 changes: 1 addition & 1 deletion src/export/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
interface BrowserTab {
export interface BrowserTab {
title: string;
url: string;
}

0 comments on commit 50038ea

Please sign in to comment.