UNPKG

eslint-plugin-import-x

Version:
8 lines (7 loc) 240 B
export interface ParsedPath { pathname: string; query: string; hash: string; } export declare const parsePath: (path: string) => ParsedPath; export declare const stringifyPath: ({ pathname, query, hash }: ParsedPath) => string;