Interface IEngineRankingOptions

interface IEngineRankingOptions {
    animation: boolean;
    customRowUpdate: ((row, rowIndex) => void);
    flags: ILineUpFlags;
    levelOfDetail: ((rowIndex) => "high" | "low");
}

Properties

animation: boolean
customRowUpdate: ((row, rowIndex) => void)

Type declaration

    • (row, rowIndex): void
    • Parameters

      • row: HTMLElement
      • rowIndex: number

      Returns void

levelOfDetail: ((rowIndex) => "high" | "low")

Type declaration

    • (rowIndex): "high" | "low"
    • Parameters

      • rowIndex: number

      Returns "high" | "low"