版博士V2.0程序
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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;