business-rules-engine - fix name at declare modules

This commit is contained in:
rsamec
2014-08-20 09:33:53 +02:00
parent 03abed93e9
commit 97cbf9597b
5 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -104,4 +104,4 @@ declare module Validators {
public tagName: string;
}
}
declare module "node-Validators" {export = Validators;}
declare module "node-validators" {export = Validators;}
+1 -1
View File
@@ -7,4 +7,4 @@ declare module Utils {
static GetNegDigits(value: string): number;
}
}
declare module "node-Utils" {export = Utils;}
declare module "node-utils" {export = Utils;}
+1 -1
View File
@@ -233,4 +233,4 @@ declare module Validation {
static GetValidationMessage(validator: any): string;
}
}
export = Validation;
declare module "node-validation" {export = Validation;}
@@ -11,6 +11,7 @@ export interface IPerson{
Email:string;
}
//create custom composite validator
var personValidator = new Validation.AbstractValidator<IPerson>();
+1 -1
View File
@@ -239,4 +239,4 @@ declare module Validation {
static GetValidationMessage(validator: any): string;
}
}
declare module "<%= pkg.name %>" {export = Validation;}
declare module "business-rule-engine" {export = Validation;}