版博士V2.0程序
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

8 linhas
498 B

  1. import type { FilterFunction } from '../settings';
  2. import type Settings from '../settings';
  3. import type { Errno } from '../types';
  4. export declare function isFatalError(settings: Settings, error: Errno): boolean;
  5. export declare function isAppliedFilter<T>(filter: FilterFunction<T> | null, value: T): boolean;
  6. export declare function replacePathSegmentSeparator(filepath: string, separator: string): string;
  7. export declare function joinPathSegments(a: string, b: string, separator: string): string;