UNPKG

@s-ui/lint-reporters

Version:

Send lint errors and golden path metrics to DataDog

15 lines (14 loc) 302 B
export type Signal = { type: 'repository'; rule: string; value: string | number | boolean; repository?: string; } | { type: 'js'; ruleName: string; numberOfFails: number; repository?: string; }; export interface Sender { send: (signal: Signal[]) => Promise<void>; }