mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-16 06:50:19 +00:00
fix mockjs.Random.string()
mockjs.Random.string() can be called without arguments.
This commit is contained in:
Vendored
+1
-1
@@ -58,7 +58,7 @@ declare namespace mockjs {
|
||||
character(pool?: S): S;
|
||||
|
||||
// Random.string
|
||||
string(pool: S | N, min?: N, max?: N): S;
|
||||
string(pool?: S | N, min?: N, max?: N): S;
|
||||
|
||||
// Random.range
|
||||
range(start?: N, stop?: N, step?: N): N;
|
||||
|
||||
Reference in New Issue
Block a user