Merge branch 'master' into rename-repo-url

This commit is contained in:
vvakame
2016-03-17 21:06:54 +09:00
1140 changed files with 179704 additions and 179635 deletions
+2 -2
View File
@@ -3,7 +3,7 @@
// Definitions by: Ken Gorab <https://github.com/kengorab>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare module ValidatorOptions {
declare namespace ValidatorOptions {
interface IsStringOptions {
regex?: RegExp,
message?: String
@@ -22,7 +22,7 @@ declare module ValidatorOptions {
type Options = IsStringOptions | IsNumberOptions | IsDateOptions;
}
declare module Validator {
declare namespace Validator {
type ValidateFn = (value: any, onError: (message: String, childName: String, childValie: any) => void) => void;
interface Validatable {