diff options
Diffstat (limited to 'std/path')
-rw-r--r-- | std/path/_util.ts | 2 | ||||
-rw-r--r-- | std/path/posix.ts | 2 | ||||
-rw-r--r-- | std/path/win32.ts | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/std/path/_util.ts b/std/path/_util.ts index 8ae40373b..0c3253045 100644 --- a/std/path/_util.ts +++ b/std/path/_util.ts @@ -2,7 +2,7 @@ // Ported from https://github.com/browserify/path-browserify/ /** This module is browser compatible. */ -import { FormatInputPathObject } from "./_interface.ts"; +import type { FormatInputPathObject } from "./_interface.ts"; import { CHAR_UPPERCASE_A, CHAR_LOWERCASE_A, diff --git a/std/path/posix.ts b/std/path/posix.ts index 1e78d1cfe..351ceb06e 100644 --- a/std/path/posix.ts +++ b/std/path/posix.ts @@ -2,7 +2,7 @@ // Ported from https://github.com/browserify/path-browserify/ /** This module is browser compatible. */ -import { FormatInputPathObject, ParsedPath } from "./_interface.ts"; +import type { FormatInputPathObject, ParsedPath } from "./_interface.ts"; import { CHAR_DOT, CHAR_FORWARD_SLASH } from "./_constants.ts"; import { diff --git a/std/path/win32.ts b/std/path/win32.ts index bac43a61a..30482e453 100644 --- a/std/path/win32.ts +++ b/std/path/win32.ts @@ -2,7 +2,7 @@ // Ported from https://github.com/browserify/path-browserify/ /** This module is browser compatible. */ -import { FormatInputPathObject, ParsedPath } from "./_interface.ts"; +import type { FormatInputPathObject, ParsedPath } from "./_interface.ts"; import { CHAR_DOT, CHAR_BACKWARD_SLASH, |