UNPKG

@sectester/reporter

Version:

Provide an abstraction for generating test results as part of the particular test frameworks.

14 lines (13 loc) 403 B
import { Formatter } from '../lib'; import { Issue } from '@sectester/scan'; export declare class PlainTextFormatter implements Formatter { private readonly BULLET_POINT; private readonly NEW_LINE; private readonly TABULATION; format(issue: Issue): string; private generateTemplate; private formatExtraInfo; private indent; private formatList; private combineList; }