UNPKG

@flex-development/pathe

Version:

Universal drop-in replacement for node:path

17 lines (16 loc) 1.07 kB
/** * @file Entry Point - Interfaces * @module pathe/interfaces */ export type { default as FileUrlToPathOptions } from '#interfaces/file-url-to-path-options'; export type { default as FormatInputPathObject, default as PathObject } from '#interfaces/format-input-path-object'; export type { default as ParsedPath } from '#interfaces/parsed-path'; export type { default as PathToFileUrlOptions } from '#interfaces/path-to-file-url-options'; export type { default as Pathe } from '#interfaces/pathe'; export type { default as PlatformOptions } from '#interfaces/platform-options'; export type { default as PlatformPath } from '#interfaces/platform-path'; export type { default as PosixPlatformPath } from '#interfaces/platform-path-posix'; export type { default as WindowsPlatformPath } from '#interfaces/platform-path-windows'; export type { default as RelativeOptions } from '#interfaces/relative-options'; export type { default as ResolveWithOptions } from '#interfaces/resolve-with-options'; export type { default as ToPathOptions } from '#interfaces/to-path-options';