Skip to content

Commit

Permalink
fix type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
suchipi committed Dec 24, 2024
1 parent 90a9236 commit 3b864d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/api/commands/mkdir/mkdirp.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { mkdir } from "./mkdir";
import { setHelpText } from "../../help";
import mkdirpHelpText from "./mkdirp.help.md";
import type { Path } from "../../path";

export function mkdirp(
path: string | Path,
Expand Down
1 change: 1 addition & 0 deletions src/api/filesystem/copy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import { _getPathInfo } from "./_getPathInfo";
import { mkdir } from "../commands/mkdir";
import { appendSlashIfWindowsDriveLetter } from "../path/_win32Helpers";
import { setHelpText } from "../help";
import { pwd } from "../commands/pwd";
import copyHelpText from "./copy.help.md";

const noop = () => {};
Expand Down

0 comments on commit 3b864d8

Please sign in to comment.