source: frontend/node_modules/fast-glob/out/utils/path.d.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 13 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 739 bytes
Line 
1import { Pattern } from '../types';
2/**
3 * Designed to work only with simple paths: `dir\\file`.
4 */
5export declare function unixify(filepath: string): string;
6export declare function makeAbsolute(cwd: string, filepath: string): string;
7export declare function removeLeadingDotSegment(entry: string): string;
8export declare const escape: typeof escapeWindowsPath;
9export declare function escapeWindowsPath(pattern: Pattern): Pattern;
10export declare function escapePosixPath(pattern: Pattern): Pattern;
11export declare const convertPathToPattern: typeof convertWindowsPathToPattern;
12export declare function convertWindowsPathToPattern(filepath: string): Pattern;
13export declare function convertPosixPathToPattern(filepath: string): Pattern;
Note: See TracBrowser for help on using the repository browser.