-
-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is a breaking change release. See the forthcoming blog post today.
- Loading branch information
1 parent
c5d51c0
commit d4254ba
Showing
4 changed files
with
3,611 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
declare module 'aurelia-validation' { | ||
export const validationMetadataKey: any; | ||
export class ValidationEngine { | ||
static getValidationReporter(instance: any): any; | ||
} | ||
export class ValidationError { | ||
message: any; | ||
object: any; | ||
propertyName: any; | ||
value: any; | ||
} | ||
export class ValidationReporter { | ||
add(object: any): any; | ||
remove(object: any): any; | ||
subscribe(callback: any): any; | ||
publish(errors: any): any; | ||
destroyObserver(observer: any): any; | ||
} | ||
export class Validator { | ||
validate(object: any, prop: any): any; | ||
getProperties(): any; | ||
} | ||
} |
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.