This commit is contained in:
Andras Bacsai
2022-08-16 09:38:34 +00:00
parent fb2a86ba3f
commit 6150a008d5
8 changed files with 40 additions and 9 deletions

View File

@@ -39,7 +39,7 @@
export let services: any;
let numberOfGetStatus = 0;
function getRndInteger(min, max) {
function getRndInteger(min: number, max: number) {
return Math.floor(Math.random() * (max - min + 1) ) + min;
}