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

This commit is contained in:
A Jordan Simonds
2019-11-11 10:52:01 -08:00
committed by Pranav Senthilnathan
parent aaed6775c2
commit 76ca97f1ce
+2 -2
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[]
}