[vuelidate] Fix #40256: change type from never to void (#40258)

This commit is contained in:
A Jordan Simonds 2019-11-11 13:52:01 -05:00 committed by Pranav Senthilnathan
parent aaed6775c2
commit 76ca97f1ce

View File

@ -21,8 +21,8 @@ export interface Validation extends Vue {
readonly $params: { [attr: string]: any }
// const validationMethods
$touch(): never
$reset(): never
$touch(): void
$reset(): void
$flattenParams(): ValidationParams[]
}