fix types

master
Evgeny Poberezkin 2018-11-11 11:06:11 +00:00
parent c8a32771e4
commit d298a4802d
1 changed files with 1 additions and 1 deletions

2
lib/ajv.d.ts vendored
View File

@ -104,7 +104,7 @@ declare namespace ajv {
* @return {string} human readable string with all errors descriptions
*/
errorsText(errors?: Array<ErrorObject> | null, options?: ErrorsTextOptions): string;
errors?: Array<ErrorObject>;
errors?: Array<ErrorObject> | null;
}
interface CustomLogger {