elearning/Frontend-Learner/node_modules/eslint-plugin-import-x/lib/utils/parse-path.d.ts

8 lines
240 B
TypeScript
Raw Normal View History

2026-01-13 10:46:40 +07:00
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;