File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,6 @@ exports.config = {
43
43
} ,
44
44
referenceDepth : 2 ,
45
45
skip : 0 ,
46
- uri : 'mongodb://localhost:27017' ,
46
+ url : 'mongodb://localhost:27017' ,
47
47
} ,
48
48
} ;
Original file line number Diff line number Diff line change @@ -42,6 +42,6 @@ export const config = {
42
42
} ,
43
43
referenceDepth : 2 ,
44
44
skip : 0 ,
45
- uri : 'mongodb://localhost:27017' ,
45
+ url : 'mongodb://localhost:27017' ,
46
46
} ,
47
47
}
Original file line number Diff line number Diff line change @@ -1471,7 +1471,7 @@ export class Stack {
1471
1471
* .includeAllReferences()
1472
1472
* @returns {Stack } Returns 'this' instance (of Stack)
1473
1473
*/
1474
- public includeReferences ( depth ) {
1474
+ public includeReferences ( depth ?: number ) {
1475
1475
console . warn ( '.includeReferences() is a relatively slow query..!' )
1476
1476
if ( typeof depth === 'number' ) {
1477
1477
this . q . referenceDepth = depth
Original file line number Diff line number Diff line change @@ -40,6 +40,6 @@ export declare const config: {
40
40
} ;
41
41
referenceDepth : number ;
42
42
skip : number ;
43
- uri : string ;
43
+ url : string ;
44
44
} ;
45
45
} ;
Original file line number Diff line number Diff line change @@ -935,7 +935,7 @@ export declare class Stack {
935
935
* .includeAllReferences()
936
936
* @returns {Stack } Returns 'this' instance (of Stack)
937
937
*/
938
- includeReferences ( depth : any ) : this;
938
+ includeReferences ( depth ?: number ) : this;
939
939
/**
940
940
* @public
941
941
* @method include
You can’t perform that action at this time.
0 commit comments