@peacockproject/core
Version:
Type definitions for Peacock's core.
13 lines (12 loc) • 411 B
TypeScript
import { Playstyle } from "./types/scoring";
import { RatingKill } from "./types/types";
/**
* Checks the criteria of each possible play-style, ranking them by scoring.
*
* @author CurryMaker
* @param session The contract session.
* @returns The play-styles, ranked from best fit to worst fit.
*/
export declare function calculatePlaystyle(session: Partial<{
kills: Set<RatingKill>;
}>): Playstyle[];