mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
fix sqlparameter value type and tests
This commit is contained in:
Vendored
+3
-3
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user