rgex
Version:
A powerful, chainable regex builder platform with comprehensive validation utilities
12 lines • 574 B
TypeScript
/**
* File and Format-related Combined Pattern Handlers
*/
import type { TextExtractionResult } from '../../../types/index.js';
/**
* Parses combined patterns specifically related to files, paths, and formats.
* @param text - The normalized text to search for patterns.
* @param testValue - An optional string to test the generated pattern against.
* @returns A `TextExtractionResult` if a match is found, otherwise `null`.
*/
export declare function parseFileCombined(text: string, testValue?: string): TextExtractionResult | null;
//# sourceMappingURL=file.d.ts.map