Urara-Blog/node_modules/.pnpm-store/v3/files/bd/e51580182bd8014616d7207f28050012da0416f767393496afc4fbc3988200074820f93d11a846803ad1c29e31e895f416af0f171cb535bb199fbcaf019c36
2022-08-14 01:14:53 +08:00

8 lines
368 B
Text

import { Pattern } from '../types';
/**
* Designed to work only with simple paths: `dir\\file`.
*/
export declare function unixify(filepath: string): string;
export declare function makeAbsolute(cwd: string, filepath: string): string;
export declare function escape(pattern: Pattern): Pattern;
export declare function removeLeadingDotSegment(entry: string): string;