版博士V2.0程序
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

1234567
  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;