UNPKG

358 BTypeScriptView Raw
1/**
2 * @since 1.0.0
3 */
4import { Reporter } from './Reporter';
5import { ValidationError } from '.';
6/**
7 * @since 1.0.0
8 */
9export declare function failure(es: Array<ValidationError>): Array<string>;
10/**
11 * @since 1.0.0
12 */
13export declare function success(): Array<string>;
14/**
15 * @since 1.0.0
16 */
17export declare const PathReporter: Reporter<Array<string>>;