fix sqlparameter value type and tests

This commit is contained in:
Brett
2015-06-20 12:00:28 -07:00
parent 1b37e4ae9b
commit e70762aec4
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
// Type definitions for DocumentDB
// Project: https://github.com/Azure/azure-documentdb-node
// Definitions by: Noel Abrahams <https://github.com/NoelAbrahams>, Brett Gutstein <https://github.com/brettferdosi>
// Definitions by: Noel Abrahams <https://github.com/NoelAbrahams>
// Definitions: https://github.com/borisyankov/DefinitelyTyped/documentdb
declare module 'documentdb' {
@@ -59,7 +59,7 @@ declare module 'documentdb' {
name: string;
/** The value of the parameter. */
value: string;
value: any;
}
/** The Sql query specification. */
@@ -412,4 +412,4 @@ declare module 'documentdb' {
*/
public replaceStoredProcedure(procedureLink: string, procedure: Procedure, options: RequestOptions, callback: RequestCallback<ProcedureMeta>): void;
}
}
}