/** * Nominex TMA API * API config for Nominex TMA * * The version of the OpenAPI document: 0.0.17 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface TapGameConfig */ export interface TapGameConfig { /** * * @type {number} * @memberof TapGameConfig */ energyLimitBase?: number; /** * * @type {number} * @memberof TapGameConfig */ energyLimitPerLevel?: number; /** * * @type {number} * @memberof TapGameConfig */ tappingGuruMultiplier?: number; /** * * @type {number} * @memberof TapGameConfig */ tappingGuruDurationMs?: number; } /** * Check if a given object implements the TapGameConfig interface. */ export declare function instanceOfTapGameConfig(value: object): boolean; export declare function TapGameConfigFromJSON(json: any): TapGameConfig; export declare function TapGameConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): TapGameConfig; export declare function TapGameConfigToJSON(value?: TapGameConfig | null): any;