mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
8 lines
239 B
TypeScript
8 lines
239 B
TypeScript
import EloRank from "elo-rank";
|
|
|
|
const test = new EloRank();
|
|
|
|
test.getKFactor(); // $ExpectType number
|
|
test.getExpected(1200, 1500); // $ExpectType number
|
|
test.updateRating(test.getExpected(1200, 1500), 1300, 1500); // $ExpectType number
|