@s-ui/lint-reporters
Version:
Send lint errors and golden path metrics to DataDog
9 lines (8 loc) • 315 B
TypeScript
import type { Results } from '@s-ui/lint/src/RepositoryLinter/Results';
import { Reporter } from './Reporter.js';
export declare class RepositoryReporter extends Reporter {
private data;
static create(): RepositoryReporter;
map(results: typeof Results): RepositoryReporter;
send(): Promise<void>;
}