modaq
Version:
Quiz Bowl Reader using TypeScript, React, and MobX
21 lines (20 loc) • 976 B
TypeScript
import { IGameFormat } from "./IGameFormat";
export declare class CustomizeGameFormatState {
gameFormat: IGameFormat;
powerMarkers: string[];
powerValues: string;
pronunicationGuideMarkers: string[] | undefined;
powerMarkerErrorMessage: string | undefined;
powerValuesErrorMessage: string | undefined;
pronunciationGuideMarkersErrorMessage: string | undefined;
constructor(existingGameFormat: IGameFormat);
clearPowerErrorMessages(): void;
clearPronunciationGuideMarkersErrorMessage(): void;
setPowerMarkers(powerMarkers: string[]): void;
setPowerMarkerErrorMessage(message: string): void;
setPowerValues(powerValues: string): void;
setPowerValuesErrorMessage(message: string): void;
setPronunciationGuideMarkers(pronunciationGuideMarkers: string[]): void;
setPronunciationGuideMarkersErrorMessage(message: string): void;
updateGameFormat(gameFormatUpdate: Partial<IGameFormat>): void;
}