frontend/.pnpm-store/v3/files/ca/1f0dfa1db3707489c897a4aad78256e8d0c3f69e78188a03363698ece4f311957db12ceb9049ddb376246c0c692db30a81915df98d1de0fea1fcca2d903487

9 lines
376 B
Plaintext

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;