@kitten-science/kitten-scientists
Version:
Add-on for the wonderful incremental browser game: https://kittensgame.com/web/
11 lines • 519 B
TypeScript
import type { SettingMax } from "../../../settings/Settings.js";
import { Button, type ButtonOptions } from "../Button.js";
import type { UiComponent } from "../UiComponent.js";
export type MaxButtonOptions = ThisType<MaxButton> & ButtonOptions;
export declare class MaxButton extends Button {
readonly options: MaxButtonOptions;
readonly setting: SettingMax;
constructor(parent: UiComponent, setting: SettingMax, options: MaxButtonOptions);
toString(): string;
}
//# sourceMappingURL=MaxButton.d.ts.map