UNPKG

@kitten-science/kitten-scientists

Version:

Add-on for the wonderful incremental browser game: https://kittensgame.com/web/

12 lines 586 B
import type { Button } from "./Button.js"; import type { IconButton } from "./IconButton.js"; import { ListItem, type ListItemOptions } from "./ListItem.js"; import type { UiComponent } from "./UiComponent.js"; export type ToolbarListItemOptions = ThisType<ToolbarListItem> & ListItemOptions; export declare class ToolbarListItem extends ListItem { readonly options: ToolbarListItemOptions; constructor(parent: UiComponent, options?: ToolbarListItemOptions); toString(): string; addChild(child: Button | IconButton): this; } //# sourceMappingURL=ToolbarListItem.d.ts.map