mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-12 21:10:23 +00:00
added re-validator
This commit is contained in:
Vendored
+16
@@ -0,0 +1,16 @@
|
||||
// Type definitions for axios 0.5.2
|
||||
|
||||
// Definitions by: Jason Turner<https://github.com/brewsoftware>
|
||||
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
||||
|
||||
declare module Revalidator {
|
||||
interface RevalidatorStatic {
|
||||
validate(object: any, schema: any, options: any): any;
|
||||
}
|
||||
}
|
||||
|
||||
declare var revalidator: Revalidator.RevalidatorStatic;
|
||||
|
||||
declare module "revalidator" {
|
||||
export = revalidator;
|
||||
}
|
||||
Reference in New Issue
Block a user