版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

9 строки
376 B

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