SourceTermAnalysisSystem_vue/node_modules/eslint-plugin-import-x/lib/utils/parse-path.d.ts
2026-05-15 10:22:44 +08:00

8 lines
240 B
TypeScript

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;