jQuery.validation: Gave definition to errorMap

This commit is contained in:
John Reilly
2014-01-02 15:49:20 +00:00
parent 925a1282a8
commit da1982687c
2 changed files with 9 additions and 4 deletions
+7 -2
View File
@@ -28,7 +28,7 @@ interface ValidationOptions
onkeyup?: boolean;
onsubmit?: boolean;
rules?: Object;
showErrors?: (errorMap: Object, errorList: ErrorListItem[]) => void;
showErrors?: (errorMap: ErrorDictionary, errorList: ErrorListItem[]) => void;
submitHandler?: (form: HTMLFormElement) => void;
success?: any;
unhighlight?: (element: HTMLElement, errorClass: string, validClass: string) => void;
@@ -36,6 +36,11 @@ interface ValidationOptions
wrapper?: string;
}
interface ErrorDictionary
{
[name: string]: string;
}
interface ErrorListItem
{
message: string;
@@ -59,7 +64,7 @@ interface Validator
valid(): boolean;
size(): number;
errorMap: Object;
errorMap: ErrorDictionary;
errorList: ErrorListItem[];
}