Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sylc committed Apr 21, 2024
1 parent a25f78f commit 448759d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/pidToCmd.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { procList } from "../mod.ts";
import { PidItem } from "./utils/types.ts";
import type { PidItem } from "./utils/types.ts";

/**
* Get the command that started a pid
Expand Down
2 changes: 1 addition & 1 deletion src/procList.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { runCmd } from "./utils/runCmd.ts";
import { PidItem } from "./utils/types.ts";
import type { PidItem } from "./utils/types.ts";

/**
* list all process running.
Expand Down
2 changes: 1 addition & 1 deletion src/procToPid.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { procList } from "../mod.ts";
import { PidItem } from "./utils/types.ts";
import type { PidItem } from "./utils/types.ts";

/**
* Return Pids for a list of process names
Expand Down

0 comments on commit 448759d

Please sign in to comment.