@kitten-science/kitten-scientists
Version:
Add-on for the wonderful incremental browser game: https://kittensgame.com/web/
14 lines • 584 B
TypeScript
import type { KittenScientists } from "../../KittenScientists.js";
import { UiComponent, type UiComponentOptions } from "./UiComponent.js";
export declare class Paragraph extends UiComponent {
readonly element: JQuery<HTMLParagraphElement>;
/**
* Constructs a paragraph.
*
* @param host - A reference to the host.
* @param text - The text inside the paragraph.
* @param options - Options for the UI element.
*/
constructor(host: KittenScientists, text: string, options?: Partial<UiComponentOptions>);
}
//# sourceMappingURL=Paragraph.d.ts.map