forked from react-hook-form/react-hook-form
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix isValid * fix onBlur isValid issue * code clean up * error message update * update the error message * remove .vscode from the repo
- Loading branch information
1 parent
439840b
commit c214d03
Showing
8 changed files
with
230 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,3 +67,4 @@ typings/ | |
/coverage | ||
.rpt2_cache | ||
.coveralls.yml | ||
.vscode |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
interface Set<T> { | ||
add(value: T): Set<T>; | ||
clear(): void; | ||
delete(value: T): boolean; | ||
entries(): IterableIterator<[T, T]>; | ||
forEach( | ||
callbackfn: (value: T, index: T, set: Set<T>) => void, | ||
thisArg?: any, | ||
): void; | ||
has(value: T): boolean; | ||
keys(): IterableIterator<T>; | ||
size: number; | ||
values(): IterableIterator<T>; | ||
[Symbol.iterator](): IterableIterator<T>; | ||
[Symbol.toStringTag]: string; | ||
} | ||
|
||
interface SetConstructor { | ||
new <T>(): Set<T>; | ||
new <T>(iterable: Iterable<T>): Set<T>; | ||
prototype: Set<any>; | ||
} | ||
declare var Set: SetConstructor; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.