11 lines
163 B
TypeScript
11 lines
163 B
TypeScript
|
/**
|
||
|
* @since 1.0.0
|
||
|
*/
|
||
|
import { Validation } from './index'
|
||
|
/**
|
||
|
* @since 1.0.0
|
||
|
*/
|
||
|
export interface Reporter<A> {
|
||
|
report: (validation: Validation<any>) => A
|
||
|
}
|