sarif-explorer
Version:
A modern SARIF report viewer that converts SARIF files into interactive, shareable HTML reports with file explorer, collapsible issue lists, and code snippets.
13 lines • 462 B
TypeScript
/**
* Validates that the input file exists and is readable
*/
export declare function validateInputFile(filePath: string): Promise<void>;
/**
* Validates that the output directory is writable
*/
export declare function validateOutputPath(outputPath: string): Promise<void>;
/**
* Validates that the input file is a valid JSON SARIF file
*/
export declare function validateSarifFile(filePath: string): Promise<void>;
//# sourceMappingURL=validators.d.ts.map