mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-19 09:49:11 -05:00
11 lines
261 B
TypeScript
11 lines
261 B
TypeScript
type Rating = {
|
|
mu: number;
|
|
sigma: number;
|
|
};
|
|
|
|
declare module "openskill" {
|
|
export function rating(rating?: Rating): Rating;
|
|
export function ordinal(rating: Rating): number;
|
|
export function rate(ratings: [Rating[], Rating[]]): [Rating[], Rating[]];
|
|
}
|