removed unnecessary types

This commit is contained in:
Miodec 2022-02-22 23:39:21 +01:00
parent 91657fd53f
commit 80f822c76a
2 changed files with 1 additions and 9 deletions

View file

@ -10,10 +10,7 @@
"moduleResolution": "node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"paths": {
"anticheat": ["./anticheat/anticheat"]
}
"esModuleInterop": true
},
"exclude": ["node_modules", "build"]
}

View file

@ -1,5 +0,0 @@
declare module "anticheat" {
function validateResult(result): string;
function validateKeys(result, uid): string;
}