modaq
Version:
Quiz Bowl Reader using TypeScript, React, and MobX
17 lines (16 loc) • 1.85 kB
TypeScript
import { CustomizeGameFormatState } from "../state/CustomizeGameFormatState";
import { IGameFormat } from "../state/IGameFormat";
export declare function changeRegulationTossupCount(customizeGameFormatState: CustomizeGameFormatState, newValue?: string | undefined): void;
export declare function changeNegValue(customizeGameFormatState: CustomizeGameFormatState, newValue?: string | undefined): void;
export declare function changePowerMarkers(customizeGameFormatState: CustomizeGameFormatState, newValue?: string): void;
export declare function changePowerValues(customizeGameFormatState: CustomizeGameFormatState, newValue?: string): void;
export declare function changePronunciationGuideMarkers(customizeGameFormatState: CustomizeGameFormatState, newValue?: string): void;
export declare function changeMinimumQuestionsInOvertime(customizeGameFormatState: CustomizeGameFormatState, newValue?: string | undefined): void;
export declare function changeBounceback(customizeGameFormatState: CustomizeGameFormatState, checked?: boolean): void;
export declare function changeOvertimeBonuses(customizeGameFormatState: CustomizeGameFormatState, checked?: boolean): void;
export declare function changePairTossupsBonuses(customizeGameFormatState: CustomizeGameFormatState, checked?: boolean): void;
export declare function isGameFormatValid(state: CustomizeGameFormatState): boolean;
export declare function normalizeGameFormat(state: CustomizeGameFormatState, oldGameFormat: IGameFormat): void;
export declare function resetGameFormat(customizeGameFormatState: CustomizeGameFormatState, gameFormat: IGameFormat): void;
export declare function validatePowerSettings(customizeGameFormatState: CustomizeGameFormatState): void;
export declare function validatePronunicationGuideMarker(customizeGameFormatState: CustomizeGameFormatState): void;