Urara-Blog/node_modules/.pnpm-store/v3/files/47/796cd25970bf844b9b72faa8a77cf82da294d13987479495853611918a24e565674acdb5cc90843db0d112fbb644fb92a20ef235443a359fa5d88dffc96da2
2022-08-14 01:14:53 +08:00

7 lines
498 B
Text

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