@kitten-science/kitten-scientists
Version:
Add-on for the wonderful incremental browser game: https://kittensgame.com/web/
12 lines • 665 B
TypeScript
import type { SupportedLocale } from "../../../Engine.js";
import type { SettingOptions, SettingSell } from "../../../settings/Settings.js";
import { TextButton, type TextButtonOptions } from "../TextButton.js";
import type { UiComponent } from "../UiComponent.js";
export type SellButtonOptions = ThisType<SellButton> & TextButtonOptions;
export declare class SellButton extends TextButton {
readonly options: SellButtonOptions;
readonly setting: SettingSell;
constructor(parent: UiComponent, setting: SettingSell, locale: SettingOptions<SupportedLocale>, options?: SellButtonOptions);
toString(): string;
}
//# sourceMappingURL=SellButton.d.ts.map