@eklmv/jscpd-sarif-reporter
Version:
Reporter for jscpd. Generate a report in SARIF format (https://github.com/oasis-tcs/sarif-spec).
11 lines (8 loc) • 323 B
TypeScript
import { IOptions, IClone, IStatistic } from '@eklmv/jscpd-core';
import { IReporter } from '@eklmv/jscpd-finder';
declare class SarifReporter implements IReporter {
private options;
constructor(options: IOptions);
report(clones: IClone[], statistic: IStatistic): void;
}
export { SarifReporter as default };