@reliverse/pathkit 2.2.9 → 2.2.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/mod.d.ts +3 -2
- package/package.json +1 -1
package/dist/mod.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { posix } from "node:path";
|
|
2
|
+
type PlatformPath = typeof posix;
|
|
2
3
|
import { type GetFileImportsExportsOptions, getFileImportsExports, type ImportExportInfo, type ImportExportSpecifier } from "./utils/get-imports-exports.js";
|
|
3
4
|
declare const normalizedAliasSymbol: unique symbol;
|
|
4
5
|
export declare const IMPORT_EXPORT_REGEX: RegExp;
|
|
@@ -210,7 +211,7 @@ declare const path: PlatformPath & typeof _pathBase & {
|
|
|
210
211
|
posix: PlatformPath;
|
|
211
212
|
win32: PlatformPath;
|
|
212
213
|
};
|
|
213
|
-
declare const win32:
|
|
214
|
+
declare const win32: typeof posix;
|
|
214
215
|
declare const delimiter: ";" | ":";
|
|
215
216
|
export type { PlatformPath, PathExtFilter, ImportExtType, ImportExportInfo, ImportExportSpecifier, GetFileImportsExportsOptions, };
|
|
216
217
|
export { _pathBase as posix, win32, basename, delimiter, dirname, extname, filename, format, isAbsolute, join, normalize, parse, relative, resolve, sep, toNamespacedPath, normalizeAliases, resolveAlias, reverseResolveAlias, normalizeWindowsPath, convertStringAliasRelative, convertImportsAliasToRelative, convertImportsExt, stripPathSegments, stripPathSegmentsInDirectory, attachPathSegments, attachPathSegmentsInDirectory, getFileImportsExports, };
|
package/package.json
CHANGED